mirror of
https://github.com/steedos/steedos-platform
synced 2024-11-22 17:06:42 +00:00
35 lines
742 B
JSON
35 lines
742 B
JSON
{
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"module": "CommonJS",
|
|
"target": "es5",
|
|
"outDir": "./lib",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"jsx": "react",
|
|
"rootDir": "src",
|
|
"moduleResolution": "node",
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": false,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"noEmit": false,
|
|
//"declaration": true,
|
|
"allowJs": true,
|
|
"isolatedModules": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"downlevelIteration": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
],
|
|
}
|