21 lines
455 B
JSON
21 lines
455 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
// this aligns with Vue's browser support
|
||
|
"target": "es5",
|
||
|
"lib": ["es2015", "dom"],
|
||
|
// this enables stricter inference for data properties on `this`
|
||
|
"strict": false,
|
||
|
// if using webpack 2+ or rollup, to leverage tree shaking:
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"outDir": "dist"
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"**/*.spec.ts"
|
||
|
]
|
||
|
}
|