sudo-archive/tsconfig.json

26 lines
628 B
JSON
Raw Normal View History

2022-02-06 19:56:48 +00:00
{
"compilerOptions": {
2022-12-13 22:50:13 +00:00
"target": "ES2020",
"lib": ["dom", "dom.iterable", "esnext"],
2022-02-06 19:56:48 +00: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 21:27:57 +00:00
"jsx": "react-jsx",
"baseUrl": "./src",
2022-12-13 22:50:13 +00:00
"paths": {
"@/*": ["./*"]
},
"types": ["vite/client"]
2022-02-06 19:56:48 +00:00
},
2022-12-13 22:50:13 +00:00
"include": ["src"]
2022-02-06 19:56:48 +00:00
}