-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
44 lines (37 loc) · 1.02 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"allowImportingTsExtensions": true,
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"rootDir": ".",
"newLine": "lf",
"noEmit": true,
"outDir": "./dist",
"removeComments": false,
"sourceMap": true,
"allowJs": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"jsx": "preserve",
"jsxImportSource": "vue",
"lib": ["ESNext"],
"target": "ESNext",
"useDefineForClassFields": true,
"composite": true,
"incremental": true,
"skipLibCheck": true
},
"include": ["**/*.js", "**/*.jsx", "**/*.ts", "**/*.tsx", "**/*.vue"],
"exclude": ["node_modules", "dist"]
}