Files
firegex-traffic-viewer/frontend/tsconfig.json

23 lines
597 B
JSON
Raw Normal View History

2022-06-11 21:57:50 +02:00
{
"compilerOptions": {
2023-06-05 00:55:38 +02:00
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"types": ["vite/client", "vite-plugin-svgr/client", "node"],
"allowJs": false,
"skipLibCheck": false,
"esModuleInterop": false,
2022-06-11 21:57:50 +02:00
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
2023-06-05 00:55:38 +02:00
"module": "ESNext",
2022-06-11 21:57:50 +02:00
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
2023-06-05 00:55:38 +02:00
"include": ["src"]
2022-06-11 21:57:50 +02:00
}
2023-06-05 00:55:38 +02:00