2020-06-04 18:20:48 +00:00
|
|
|
{
|
|
|
|
"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:
|
2020-07-19 13:45:44 +00:00
|
|
|
"module": "es2020",
|
2020-06-20 04:44:57 +00:00
|
|
|
"moduleResolution": "node",
|
2020-06-20 15:10:11 +00:00
|
|
|
"experimentalDecorators": true,
|
2020-06-20 04:44:57 +00:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"allowJs": true,
|
2020-07-19 13:45:44 +00:00
|
|
|
"baseUrl": "src",
|
|
|
|
"paths": {
|
|
|
|
"@/*": [
|
|
|
|
"./*"
|
|
|
|
]
|
|
|
|
}
|
2020-06-04 18:20:48 +00:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.vue",
|
|
|
|
"tests/**/*.ts",
|
|
|
|
"tests/**/*.tsx"
|
|
|
|
]
|
|
|
|
}
|