-
Notifications
You must be signed in to change notification settings - Fork 6
/
tsconfig.json
34 lines (33 loc) · 865 Bytes
/
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
{
"compilerOptions": {
"baseUrl": ".",
"resolveJsonModule": true,
"paths": {
"@/*": ["src/*"]
},
"typeRoots": ["./node_modules/@types", "./node_modules/vuetify/types"],
"lib": ["es2017", "dom"],
"declaration": false,
"target": "es6",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"forceConsistentCasingInFileNames": true,
"noEmitOnError": false, // without it, webpack wouldn't resolve vue files without extension
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"pretty": true,
"sourceMap": true,
"strict": true,
"moduleResolution": "node"
},
"include": [
"src/**/*.ts",
"src/**/*.vue"
],
"exclude": [
"node_modules"
]
}