web-check/tsconfig.json

22 lines
531 B
JSON
Raw Permalink Normal View History

2022-06-11 22:59:03 +02:00
{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "node",
"lib": ["DOM", "DOM.Iterable", "ES2020"],
2022-06-11 22:59:03 +02:00
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2022-06-11 23:30:46 +02:00
"jsx": "react-jsx",
"baseUrl": "src",
2022-06-11 22:59:03 +02:00
},
2022-06-11 23:30:46 +02:00
"include": [ "src" ]
2022-06-11 22:59:03 +02:00
}