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.
32 lines • 697 B
JSON
{
"compilerOptions": {
"rootDir": ".",
"outDir": "../aot",
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"noEmitHelpers": false,
"noImplicitAny": false,
"declaration": true,
"skipLibCheck": true,
"stripInternal": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"lib": ["es2015", "dom"]
},
"exclude": [
"node_modules",
"../node_modules",
"../node_modules/**"
],
"files":[
"app.module.ts"
],
"angularCompilerOptions": {
"skipMetadataEmit" : false,
"skipTemplateCodegen" : true
}
}