@angular-ru/typescript
v14.1.0
Published
Angular-RU package
Downloads
57
Readme
Shareable TypeScript config for Angular projects
Quick start
$ npm install @angular-ru/typescript -D
Add to your tsconfig.json
:
{
extends: '@angular-ru/typescript/tsconfig.json',
angularCompilerOptions: {
// override shared angularCompilerOptions
strictTemplates: true,
disableTypeScriptVersionCheck: true
},
compilerOptions: {
// override shared compilerOptions
outDir: 'dist',
target: 'es2018',
lib: ['es2018'],
typeRoots: ['./node_modules/@types']
}
}