-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtsconfig.json
41 lines (41 loc) · 1.15 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
{
"compilerOptions": {
"outDir": "dist",
"target": "ES2020",
"isolatedModules": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"declaration": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"importHelpers": true,
"noImplicitReturns": true,
"removeComments": true,
"module": "ES2020",
"moduleResolution": "node",
"noLib": false,
"noUnusedParameters": true,
"preserveConstEnums": true,
"preserveWatchOutput": true,
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"baseUrl": ".",
"types": [],
"paths": {
"@/*": ["src/*", "types/*"]
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
},
"include": [
"src/**/*",
"tests/**/*.ts",
"tests/**/*.tsx",
"types/**/*.ts",
"example/**/*.ts",
"example/**/*.tsx",
"example/**/*.vue"
],
"exclude": ["node_modules"]
}