generator-ngx-rocket
Version:
Extensible Angular 13+ enterprise-grade project generator based on angular-cli with best practices from the community. Includes PWA/Cordova/Electron support, coding guides and more!
26 lines (25 loc) • 482 B
JSON
{
"compileOnSave": false,
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
<% if (props.strict) { -%>
"strict": true,
<% } else { -%>
"noImplicitAny": true,
<% } -%>
"suppressImplicitAnyIndexErrors": true,
"target": "es5",
"typeRoots": [],
"lib": [
"es2018",
"dom"
]
},
"files": [
"electron.main.ts"
]
}