39 lines
811 B
JSON
39 lines
811 B
JSON
{
|
|
"extends": "./tsconfig.path.json",
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext",
|
|
"es5",
|
|
"es2015.collection",
|
|
"es2015.iterable"
|
|
],
|
|
"strict": true,
|
|
"outDir": "./out/js/src",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
"downlevelIteration": true,
|
|
"importHelpers": true,
|
|
"typeRoots": [
|
|
"./typings",
|
|
"./node_modules/@types"
|
|
],
|
|
"sourceMap": true,
|
|
"baseUrl": "./src"
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
]
|
|
}
|