-
-
Notifications
You must be signed in to change notification settings - Fork 572
Expand file tree
/
Copy pathtsconfig.app.json
More file actions
40 lines (34 loc) · 947 Bytes
/
tsconfig.app.json
File metadata and controls
40 lines (34 loc) · 947 Bytes
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
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"paths": {
"@/*": [
"./src/*"
],
// vuex's exports field resolves to dist/vuex.mjs under Bundler mode,
// which has no adjacent types. Point TypeScript to the actual type declarations.
"vuex": [
"./node_modules/vuex/types/index.d.ts"
],
// Under Bundler mode the "./*": "./*" exports wildcard doesn't resolve
// subpath type declarations. Point TypeScript directly to the package files.
"monaco-editor/esm/*": [
"./node_modules/monaco-editor/esm/*"
]
},
"experimentalDecorators": true
},
"vueCompilerOptions": {
"target": 2.7
},
"include": [
"*.d.ts",
"src/**/*.ts",
"src/**/*.vue",
"src/monaco/theme/editor.*.theme.json"
],
"exclude": [
"src/**/__tests__/*"
]
}