Files
frontend-app-authoring/tsconfig.json
Navin Karkera ae67be83a0 feat: new course outline header [FC-0114] (#2735)
Adds new header and subheader to course outline. Converts existing js code to ts.
2025-12-17 13:13:19 -05:00

20 lines
402 B
JSON

{
"extends": "@edx/typescript-config",
"compilerOptions": {
"outDir": "dist",
"baseUrl": "./src",
"paths": {
"@src/*": ["./*"],
"CourseAuthoring/*": ["./*"]
},
"types": ["jest", "@testing-library/jest-dom"]
},
"include": [
"*.js",
".eslintrc.js",
"src/**/*",
"plugins/**/*"
],
"exclude": ["dist", "node_modules"]
}