-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
46 lines (44 loc) · 1.05 KB
/
tsconfig.json
File metadata and controls
46 lines (44 loc) · 1.05 KB
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
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Base",
"compilerOptions": {
"target": "ESNext",
"jsx": "preserve",
"jsxImportSource": "vue",
"lib": [
"ESNext",
"dom",
"dom.iterable",
"webworker"
],
"moduleDetection": "force",
"useDefineForClassFields": true,
"baseUrl": "./",
"module": "preserve",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"types": [],
"allowJs": true,
"strict": true,
"strictNullChecks": true,
"noImplicitOverride": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"noEmit": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"preserveSymlinks": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true
// 開了 Font-Awesome 會報錯
// "noUnusedLocals": true
},
"exclude": [
"**/.output/**",
"**/dist/**",
"**/node_modules/**",
"**/eslint.config.js"
]
}