-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
33 lines (32 loc) · 858 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": {
// this aligns with Vue's browser support
"target": "es5",
// this enables stricter inference for data properties on `this`
"strict": true,
// if using webpack 2+ or rollup, to leverage tree shaking:
"module": "es2015",
"moduleResolution": "node",
"esModuleInterop": true,
"experimentalDecorators": true,
"importHelpers": true,
"baseUrl": ".",
"paths": {
"@view/*": [
"resources/views/components/*"
],
"@src/*": [
"js/*"
]
},
"typeRoots": [
"node_modules/@types",
"js/types"
]
},
"include": [
"tests/js/**/*.ts",
"js/**/*.ts",
"resources/views/components/**/*.html"
]
}