e0615fa867
📁 Changed TDrive root folder
38 lines
801 B
JSON
38 lines
801 B
JSON
{
|
|
"extends": "./tsconfig.paths.json",
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"target": "ESNext",
|
|
"downlevelIteration": true,
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"jsx": "react-jsx",
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/deprecated/*",
|
|
"**/backend/node/*",
|
|
],
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"rootDir": "./",
|
|
}
|