Migrate from Redux to React Query and React Context. This modernizes state management while maintaining all existing functionality. All the redux code and files were removed, including all redux and related packages.
18 lines
461 B
JSON
18 lines
461 B
JSON
{
|
|
"extends": "@edx/typescript-config",
|
|
"compilerOptions": {
|
|
"types": ["jest", "@testing-library/jest-dom"],
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"*": ["*"]
|
|
},
|
|
"rootDir": ".",
|
|
"outDir": "dist"
|
|
},
|
|
"include": ["*.js", ".eslintrc.js", "src/**/*", "plugins/**/*", "jest.config.ts"],
|
|
"exclude": ["*.js", ".eslintrc.js", "dist", "node_modules"]
|
|
}
|