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