43 lines
972 B
JSON
43 lines
972 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Base options */
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true,
|
|
"target": "ES2015",
|
|
"verbatimModuleSyntax": false,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"moduleDetection": "force",
|
|
"isolatedModules": true,
|
|
|
|
/* Strictness */
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"strictPropertyInitialization": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"experimentalDecorators": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
|
|
/* TypeScript transpilation */
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"moduleResolution": "node",
|
|
"module": "esnext",
|
|
|
|
/* Code runs in DOM */
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
/* Types */
|
|
"types": ["vite/client"],
|
|
|
|
/* Aliases */
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src"]
|
|
}
|