2018-10-14 02:20:15 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
// this aligns with Vue's browser support
|
2018-10-29 17:36:33 +00:00
|
|
|
"target": "es6",
|
2018-10-14 02:20:15 +00:00
|
|
|
// this enables stricter inference for data properties on `this`
|
|
|
|
"strict": true,
|
|
|
|
// if using webpack 2+ or rollup, to leverage tree shaking:
|
|
|
|
"module": "es2015",
|
2018-10-29 17:36:33 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"types": [
|
|
|
|
"node"
|
|
|
|
],
|
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
|
|
|
]
|
2018-10-14 02:20:15 +00:00
|
|
|
}
|
|
|
|
}
|