movie-web/tsconfig.json

26 lines
628 B
JSON
Raw Normal View History

2022-02-06 20:56:48 +01:00
{
"compilerOptions": {
2022-12-13 23:50:13 +01:00
"target": "ES2020",
"lib": ["dom", "dom.iterable", "esnext"],
2022-02-06 20:56:48 +01:00
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2022-02-10 22:27:57 +01:00
"jsx": "react-jsx",
"baseUrl": "./src",
2022-12-13 23:50:13 +01:00
"paths": {
"@/*": ["./*"]
},
"types": ["vite/client"]
2022-02-06 20:56:48 +01:00
},
2022-12-13 23:50:13 +01:00
"include": ["src"]
2022-02-06 20:56:48 +01:00
}