From 82b8c19a37bcf33564c503dc727017c5d6f55aa3 Mon Sep 17 00:00:00 2001 From: sshquack Date: Thu, 4 Feb 2021 20:55:30 -0800 Subject: [PATCH] Fix compile errors with skip lib check --- template/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/template/tsconfig.json b/template/tsconfig.json index 9fe77783..2c55dd0a 100644 --- a/template/tsconfig.json +++ b/template/tsconfig.json @@ -43,8 +43,9 @@ // "typeRoots": [], /* List of folders to include type definitions from. */ // "types": [], /* Type declaration files to be included in compilation. */ "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */ - "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ + "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ // "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */ + "skipLibCheck": true /* Skip type checking of declaration files. */ /* Source Map Options */ // "sourceRoot": "./", /* Specify the location where debugger should locate TypeScript files instead of source locations. */