asynqmon/ui/tsconfig.json

27 lines
535 B
JSON
Raw Normal View History

2020-11-24 22:54:00 +08:00
{
"compilerOptions": {
"target": "es5",
2021-03-02 07:51:15 +08:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2020-11-24 22:54:00 +08:00
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
2021-03-02 07:51:15 +08:00
"noFallthroughCasesInSwitch": true
2020-11-24 22:54:00 +08:00
},
2021-03-02 07:51:15 +08:00
"include": [
"src"
]
2020-11-24 22:54:00 +08:00
}