-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtsconfig.json
62 lines (62 loc) · 1.22 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"compilerOptions": {
"target": "ESNext",
"module": "CommonJS",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"noImplicitAny": true,
"sourceMap": true,
"baseUrl": ".",
"rootDir": ".",
"outDir": "dist",
"pretty": true,
"paths": {
"@/*": [
"./src/*"
]
},
"moduleResolution": "node",
"resolveJsonModule": true,
"types": [
"node",
"@types/node",
"jsdom",
"vite/client",
"@vue/runtime-core"
],
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"removeComments": false,
"preserveConstEnums": true,
"lib": [
"es2020",
"dom",
"WebWorker"
],
"noImplicitReturns": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noImplicitThis": true,
"noUnusedParameters": true,
"importHelpers": true,
"noEmitHelpers": true,
"typeRoots": [
"./node_modules/@types"
],
},
"include": [
"./**/*",
"src/**/*",
"tests/**/*"
],
"exclude": [
"node_modules",
"dist",
"**/*.spec.ts" // Exclude test files from the main build
],
"formatCodeOptions": {
"indentSize": 2,
"tabSize": 2
}
}