From 8119c851097aaa46617dad46472d52a0251a33bb Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Sun, 18 Apr 2021 15:09:29 +0200 Subject: [PATCH] Prevent TypeScript Compiler from erroring out due to lib checks --- config/tsconfig-build.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/tsconfig-build.json b/config/tsconfig-build.json index 56de194321..b62f89a324 100644 --- a/config/tsconfig-build.json +++ b/config/tsconfig-build.json @@ -51,11 +51,12 @@ // "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */ // "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */ // "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */ - "inlineSources": false /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ + "inlineSources": false, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */ /* Experimental Options */ // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ + "skipLibCheck": true }, "include": [ "../build/ol/src/**/*.js"