Files
frontend-app-authoring/tsconfig.json
Braden MacDonald d44425c68f test: lint using oxlint as well as eslint (#2847)
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.
2026-02-02 11:47:31 -05:00

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"]
}