feat: update to Angular 10 (#5747)

This commit is contained in:
Sergey Andrievskiy 2020-08-19 18:31:26 +03:00 committed by GitHub
parent c2ce881c41
commit ec3282cac5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 5914 additions and 4864 deletions

24
tsconfig.base.json Normal file
View file

@ -0,0 +1,24 @@
{
"compileOnSave": false,
"compilerOptions": {
"importHelpers": true,
"module": "es2020",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2015",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2017",
"dom"
],
"plugins": [
{ "name": "tslint-language-service"}
]
}
}