PromucFlow_constructor/app/client/tsconfig.json

34 lines
873 B
JSON
Raw Normal View History

2019-01-21 18:11:08 +00:00
{
"extends": "./tsconfig.path.json",
2019-01-21 18:11:08 +00:00
"compilerOptions": {
"target": "ES6",
"lib": ["DOM", "ES6", "DOM.Iterable", "ScriptHost", "ES2016.Array.Include", "es2020.string", "esnext", "WebWorker"],
2019-08-29 11:22:09 +00:00
"strict": true,
2019-08-20 09:39:08 +00:00
"outDir": "./out/js/src",
2019-01-21 18:11:08 +00:00
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2019-08-29 11:22:09 +00:00
"jsx": "react",
"downlevelIteration": true,
"experimentalDecorators": true,
2019-11-05 05:09:50 +00:00
"importHelpers": true,
"typeRoots": [
"./typings",
"./node_modules/@types"
],
"sourceMap": true,
"baseUrl": "./src",
"noFallthroughCasesInSwitch": true
2019-01-21 18:11:08 +00:00
},
"include": [
2019-08-20 09:39:08 +00:00
"./src/**/*"
2019-01-21 18:11:08 +00:00
]
}