movie-web/tsconfig.json
mrjvs ace10dde78 Fix compilation
Co-authored-by: Jip Frijlink <JipFr@users.noreply.github.com>
2023-10-23 19:36:31 +02:00

26 lines
632 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"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",
"baseUrl": "./src",
"paths": {
"@/*": ["./*"]
},
"types": ["vite/client", "vite-plugin-pwa/vanillajs"]
},
"include": ["src"]
}