UNPKG

angular-webpack-quickstart

Version:

Angular QuickStart with Webpack 2 - source from the documentation.

34 lines (33 loc) 963 B
{ "compilerOptions": { "module": "commonjs", "target": "es2015", "lib": ["dom", "es6", "es2015", "es2016", "es2017", "scripthost"], "outDir": "bin", "rootDir": "src", "declaration": true, "declarationDir": "declarations", "sourceMap": true, "noEmitOnError": true, "noImplicitAny": true, "suppressImplicitAnyIndexErrors": true, // "noImplicitReturns": true, // "noImplicitThis": true, // "strictNullChecks": true, // "noUnusedParameters": true, // "noUnusedLocals": true, // "noFallthroughCasesInSwitch": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, "baseUrl": ".", "paths": { }, "types": ["node", "jasmine"] }, "exclude": [ "bin", "declarations", "dist", "node_modules" ] }