-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
41 lines (41 loc) · 1.18 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"include": ["globals.d.ts", "vite.config.ts", "src/**/*.ts", "src/**/*.d.ts"],
"exclude": ["node_modules/**/*", "dist/**/*", "public/lib/**/*"],
"compilerOptions": {
"allowImportingTsExtensions": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"baseUrl": ".",
"checkJs": true,
"composite": true,
"esModuleInterop": true,
"experimentalDecorators": false,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"module": "ESNext",
"moduleResolution": "Node",
"newLine": "LF",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": true,
"resolveJsonModule": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": false,
"strict": true,
"target": "ES2023",
"tsBuildInfoFile": "dist/.tsbuildinfo",
"useDefineForClassFields": true,
"useUnknownInCatchVariables": false,
"verbatimModuleSyntax": true
}
}