@taiga-ui/tsconfig
v0.371.0
Published
Taiga UI tsconfig
Readme
Shareable TypeScript config for Angular projects
Quick start
$ npm install @taiga-ui/tsconfig -DAdd to your tsconfig.json:
{
extends: '@taiga-ui/tsconfig',
angularCompilerOptions: {
// override shared angularCompilerOptions
strictTemplates: true,
disableTypeScriptVersionCheck: true,
},
compilerOptions: {
// override shared compilerOptions
outDir: 'dist',
target: 'es2018',
lib: ['es2018'],
},
}This package also has a type for ngDevMode:
ngDevMode && console.log('My log');