66 lines
1.4 KiB
JSON
66 lines
1.4 KiB
JSON
{
|
|
"compilerOptions": {
|
|
/* Language and Environment */
|
|
"target": "ESNext",
|
|
/* Modules */
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"paths": {
|
|
"#/*": [
|
|
"./*"
|
|
],
|
|
"~/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"baseUrl": ".",
|
|
"types": [
|
|
"vite/client",
|
|
"vite-plugin-svgr/client"
|
|
],
|
|
/* JavaScript Support */
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
/* Emit */
|
|
"noEmit": true,
|
|
/* Language and Environment */
|
|
"lib": [
|
|
"ESNext",
|
|
"DOM"
|
|
],
|
|
"jsx": "react-jsx",
|
|
/* Interop Constraints */
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
/* Type Checking */
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
/* Language and Environment */
|
|
"useDefineForClassFields": true,
|
|
/* Completeness */
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"**/*.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"dist/*"
|
|
]
|
|
}
|