kfu-24-teacher/tsconfig.json

29 lines
664 B
JSON
Raw Normal View History

2024-11-09 19:15:21 +03:00
{
"compilerOptions": {
"lib": [
"dom",
"es2017"
],
"outDir": "./dist/",
2025-01-18 12:24:04 +03:00
"skipLibCheck": true,
2024-11-09 19:15:21 +03:00
"sourceMap": true,
"esModuleInterop": true,
"noImplicitAny": false,
"module": "esnext",
2024-12-14 13:03:47 +03:00
"moduleResolution": "Bundler",
2024-11-09 19:15:21 +03:00
"target": "es6",
"jsx": "react",
2025-01-18 12:24:04 +03:00
"typeRoots": ["node_modules/@types", "@types"],
2024-11-09 19:15:21 +03:00
"resolveJsonModule": true
},
2025-01-18 12:24:04 +03:00
"include": [
"src",
"@types/**/*"
],
2024-11-09 19:15:21 +03:00
"exclude": [
"node_modules",
2025-01-18 12:24:04 +03:00
// "**/*.test.ts",
// "**/*.test.tsx",
2024-11-09 19:15:21 +03:00
"node_modules/@types/jest"
]
}