indexeddb-chunk-store/tsconfig.json

22 lines
480 B
JSON
Raw Normal View History

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:
"module": "commonjs",
"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"
]
}