41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
|
|
{
|
||
|
|
"$schema": "https://json.schemastore.org/tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"lib": ["DOM", "DOM.Iterable", "ES2022"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"target": "ES2022",
|
||
|
|
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"allowJs": true,
|
||
|
|
"checkJs": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"incremental": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
|
||
|
|
"strict": true,
|
||
|
|
"allowUnreachableCode": false,
|
||
|
|
"allowUnusedLabels": false,
|
||
|
|
"exactOptionalPropertyTypes": false,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"noImplicitOverride": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"noPropertyAccessFromIndexSignature": false,
|
||
|
|
"noUncheckedIndexedAccess": true,
|
||
|
|
"noUncheckedSideEffectImports": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
|
||
|
|
"baseUrl": ".",
|
||
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo",
|
||
|
|
"types": ["vite/client"]
|
||
|
|
},
|
||
|
|
"include": ["./"],
|
||
|
|
"exclude": ["./node_modules/"]
|
||
|
|
}
|