Pavel Murygin 08710e8320 demo
2021-08-16 14:41:01 +03:00

32 lines
677 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
},
"include": [
"src",
"../aqua-ts/"
],
"filesGlob": [
"**/*.ts", //Local source, this is the default
"../../aqua-ts/**/*.ts" //generated source
],
}