aboutsummaryrefslogtreecommitdiff
path: root/ui/tsconfig.json
diff options
context:
space:
mode:
authorAlex Shnitman <alexta69@gmail.com>2021-02-01 22:53:31 +0200
committerAlex Shnitman <alexta69@gmail.com>2021-02-02 21:09:28 +0200
commitcb8f820d73525f637b648a0f8c33157f70bbd535 (patch)
tree3c16393594068609f5a3c7011eea992ead1f40ce /ui/tsconfig.json
parentMerge pull request #17 from Rpsl/master (diff)
downloadmetube-cb8f820d73525f637b648a0f8c33157f70bbd535.tar.gz
metube-cb8f820d73525f637b648a0f8c33157f70bbd535.tar.bz2
metube-cb8f820d73525f637b648a0f8c33157f70bbd535.zip
upgrade dependencies (migrate to Angular 10)
Diffstat (limited to 'ui/tsconfig.json')
-rw-r--r--ui/tsconfig.json10
1 files changed, 2 insertions, 8 deletions
diff --git a/ui/tsconfig.json b/ui/tsconfig.json
index 30956ae..f69f654 100644
--- a/ui/tsconfig.json
+++ b/ui/tsconfig.json
@@ -1,3 +1,4 @@
+/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"compilerOptions": {
@@ -7,20 +8,13 @@
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
- "module": "esnext",
"moduleResolution": "node",
"importHelpers": true,
"target": "es2015",
- "typeRoots": [
- "node_modules/@types"
- ],
+ "module": "es2020",
"lib": [
"es2018",
"dom"
]
- },
- "angularCompilerOptions": {
- "fullTemplateTypeCheck": true,
- "strictInjectionParameters": true
}
}
bgstack15