34 строки
681 B
JSON
34 строки
681 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "build/dist",
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"lib": ["es6", "dom"],
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"rootDir": "src",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": false,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": false,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"noUnusedLocals": false
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"scripts",
|
|
"acceptance-tests",
|
|
"webpack",
|
|
"jest",
|
|
"server",
|
|
"src/setupTests.ts"
|
|
],
|
|
"types": [
|
|
"typePatches"
|
|
]
|
|
}
|