From 16b5525950c27172b8426e03cbb1c59794cfc44c Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 1 Aug 2019 11:38:26 +0200 Subject: Update Angular -> 8.2.0 --- client/tsconfig.json | 40 ++++++++++++---------------------------- 1 file changed, 12 insertions(+), 28 deletions(-) (limited to 'client/tsconfig.json') diff --git a/client/tsconfig.json b/client/tsconfig.json index f99c5d87d..8824c4f7c 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -19,40 +19,24 @@ "node_modules/@types" ], "lib": [ - "es2017", - "es2016", - "es2015", + "es2018", "dom" ], - "types": [ - "jasmine" - ], - "baseUrl": "src", + "baseUrl": "./", "paths": { - "@app/*": [ "app/*" ], - "@shared/*": [ "../../shared/*" ], - "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ], - "fs": [ "./shims/noop" ], - "http": [ "./shims/http" ], - "https": [ "./shims/https" ], - "path": [ "./shims/path" ], - "stream": [ "./shims/noop" ], - "crypto": [ "./shims/noop" ] + "@app/*": [ "src/app/*" ], + "@shared/*": [ "../shared/*" ], + "video.js": [ "node_modules/video.js/dist/alt/video.core.js" ], + "fs": [ "src/shims/noop" ], + "http": [ "src/shims/http" ], + "https": [ "src/shims/https" ], + "path": [ "src/shims/path" ], + "stream": [ "src/shims/noop" ], + "crypto": [ "src/shims/noop" ] } }, "angularCompilerOptions": { "strictInjectionParameters": true, "fullTemplateTypeCheck": true - }, - "include": [ - "./src", - "../../shared" - ], - "exclude": [ - "../../node_modules", - "../node_modules", - "../dist", - "../../server", - "../src/**/*.spec.ts" - ] + } } -- cgit v1.2.3