indexeddb-chunk-store/tsconfig.json

21 lines
455 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",
"outDir": "dist"
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
]
}