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.
26 lines • 646 B
JSON
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"inlineSources": true,
"emitDecoratorMetadata": true,
"baseUrl": "src",
"experimentalDecorators": true,
"noEmitHelpers": false,
"allowJs": false,
"allowSyntheticDefaultImports": true,
"noImplicitAny": false,
"suppressImplicitAnyIndexErrors": true,
"lib": ["es2015", "dom"],
"rootDir": ".",
"outDir": "../dist",
"declaration": true
},
"exclude": ["node_modules"],
"angularCompilerOptions": {
"skipMetadataEmit" : false,
"skipTemplateCodegen" : true
}
}