forked from bencodezen/vue-enterprise-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.app.json
139 lines (139 loc) · 3.94 KB
/
tsconfig.app.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": [
"env.d.ts",
"src/**/*",
"src/**/*.json",
"src/**/*.vue",
"@types/**/*",
"tests/mock-api/**/*",
"tests/unit/**/*"
],
"exclude": ["src/**/__tests__/*", "src/**/*.spec.ts", "tests/**/*"],
"compilerOptions": {
"composite": true,
"strict": true,
"strictNullChecks": true,
"jsx": "preserve",
"importHelpers": true,
"sourceMap": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"removeComments": true,
"baseUrl": ".",
"plugins": [
{
"name": "typescript-vue-plugin"
}
],
"paths": {
"@router": [
"./src/router/index.ts",
"./src/router/index.js",
"./src/router/index.json",
"./src/router/index.vue",
"./src/router/index.scss",
"./src/router/index.css"
],
"@router/*": ["./src/router/*"],
"@views": [
"./src/router/views/index.ts",
"./src/router/views/index.js",
"./src/router/views/index.json",
"./src/router/views/index.vue",
"./src/router/views/index.scss",
"./src/router/views/index.css"
],
"@views/*": ["./src/router/views/*"],
"@layouts": [
"./src/router/layouts/index.ts",
"./src/router/layouts/index.js",
"./src/router/layouts/index.json",
"./src/router/layouts/index.vue",
"./src/router/layouts/index.scss",
"./src/router/layouts/index.css"
],
"@layouts/*": ["./src/router/layouts/*"],
"@components": [
"./src/components/index.ts",
"./src/components/index.js",
"./src/components/index.json",
"./src/components/index.vue",
"./src/components/index.scss",
"./src/components/index.css"
],
"@components/*": ["./src/components/*"],
"@composables": [
"./src/composables/index.ts",
"./src/composables/index.js",
"./src/composables/index.json",
"./src/composables/index.vue",
"./src/composables/index.scss",
"./src/composables/index.css"
],
"@composables/*": ["./src/composables/*"],
"@assets": [
"./src/assets/index.ts",
"./src/assets/index.js",
"./src/assets/index.json",
"./src/assets/index.vue",
"./src/assets/index.scss",
"./src/assets/index.css"
],
"@assets/*": ["./src/assets/*"],
"@utils": [
"./src/utils/index.ts",
"./src/utils/index.js",
"./src/utils/index.json",
"./src/utils/index.vue",
"./src/utils/index.scss",
"./src/utils/index.css"
],
"@utils/*": ["./src/utils/*"],
"@stores": [
"./src/stores/index.ts",
"./src/stores/index.js",
"./src/stores/index.json",
"./src/stores/index.vue",
"./src/stores/index.scss",
"./src/stores/index.css"
],
"@stores/*": ["./src/stores/*"],
"@design": ["./src/design/index.scss"],
"@design/*": ["./src/design/index.scss/*"],
"@plugin": [
"./src/plugin/index.ts",
"./src/plugin/index.js",
"./src/plugin/index.json",
"./src/plugin/index.vue",
"./src/plugin/index.scss",
"./src/plugin/index.css"
],
"@plugin/*": ["./src/plugin/*"],
"@models": [
"./src/models/index.ts",
"./src/models/index.js",
"./src/models/index.json",
"./src/models/index.vue",
"./src/models/index.scss",
"./src/models/index.css"
],
"@models/*": ["./src/models/*"],
"@tests/*": ["./tests/*"],
"@src": [
"./src/index.ts",
"./src/index.js",
"./src/index.json",
"./src/index.vue",
"./src/index.scss",
"./src/index.css"
],
"@src/*": ["./src/*"]
}
}
}