PR enables the use of oxlint (type-aware) alongside eslint, on a trial basis. Oxlint supports most of the same rules, plus more, is eslint compatible, and is much, much faster.
19 lines
391 B
JSON
19 lines
391 B
JSON
{
|
|
"extends": "@edx/typescript-config",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"paths": {
|
|
"@src/*": ["./src/*"],
|
|
"CourseAuthoring/*": ["./src/*"]
|
|
},
|
|
"types": ["jest", "@testing-library/jest-dom"]
|
|
},
|
|
"include": [
|
|
"*.js",
|
|
".eslintrc.js",
|
|
"src/**/*",
|
|
"plugins/**/*"
|
|
],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|