ack-webpack
Version:
A code bundler that drastically reduces setup time by offering an init prompt of project setup questions and includes a fantastic browser reloader.
27 lines (26 loc) • 547 B
JSON
{
"compilerOptions": {
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitHelpers" :true,
"lib": ["es2015", "dom"],
"types": [
"jasmine"
],
"mapRoot": "./",
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": true,
"module": "es6",
"moduleResolution": "node",
"outDir": "./temp/out-tsc",
"sourceMap": true,
"target": "es5",
"typeRoots": [
"../node_modules/@types"
]
},
"include": [
"../src/**/*.spec.ts"
]
}