visions-vtt/kliento/tsconfig.json

27 lines
535 B
JSON
Raw Normal View History

2021-11-19 04:28:01 +00:00
{
"compilerOptions": {
2022-04-02 00:52:46 +00:00
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
2021-11-19 04:28:01 +00:00
"esModuleInterop": true,
2022-04-02 00:52:46 +00:00
"allowSyntheticDefaultImports": true,
2021-11-19 04:28:01 +00:00
"strict": true,
2022-04-02 00:52:46 +00:00
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
2021-12-26 18:33:01 +00:00
"noEmit": true,
2022-04-02 00:52:46 +00:00
"jsx": "react-jsx"
},
"include": [
"src"
]
2021-11-19 04:28:01 +00:00
}