UNPKG

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!

29 lines (28 loc) 502 B
{ "extends": "./tsconfig.json", "compilerOptions": { "outDir": "./out-tsc/spec", <% if (props.tools.includes('jest')) { -%> "allowJs": true, <% } -%> "types": [ <% if (props.tools.includes('jest')) { -%> "jest", <% } else { -%> "jasmine", <% } -%> "node" ] }, "files": [ <% if (!props.tools.includes('jest')) { -%> "src/test.ts", <% } -%> "src/polyfills.ts" ], "include": [ "src/**/*.spec.ts", "src/**/*.mock.ts", "src/**/*.d.ts" ] }