2019-05-10 21:39:02 +01:00
|
|
|
{
|
|
|
|
"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:
|
2021-01-08 14:40:43 +00:00
|
|
|
"module": "umd",
|
2019-05-10 21:39:02 +01:00
|
|
|
"moduleResolution": "node",
|
2019-08-19 13:34:07 +01:00
|
|
|
"outDir": "dist",
|
|
|
|
"declaration": true
|
2019-05-10 21:39:02 +01:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"**/*.spec.ts"
|
|
|
|
]
|
|
|
|
}
|