35 строки
688 B
JSON
35 строки
688 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"target": "es5",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
"sourceMap": true,
|
|
"noImplicitAny": false
|
|
},
|
|
"include": [
|
|
"src",
|
|
"test.config.js"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/node_modules/*"
|
|
],
|
|
"extends": "./tsconfig.paths.json"
|
|
}
|