From 7d8417658ffb1680a8b20d6930f45faf6e903541 Mon Sep 17 00:00:00 2001 From: Kuba Orlik Date: Sun, 23 Oct 2022 08:36:26 +0200 Subject: [PATCH] Add skipLibCheck to tsconfig --- tsconfig.json | 46 +++++++++++++++++++++------------------------- 1 file changed, 21 insertions(+), 25 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 61a8bdb..fb9cdbc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,26 +1,22 @@ { - "compilerOptions": { - "module": "commonjs", - "moduleResolution": "node", - "noImplicitAny": true, - "noImplicitThis": true, - "strictNullChecks": true, - "target": "ES6", - "declaration": true, - "esModuleInterop": true, - "lib": [ - "ES6", - "ESNext" - ], - "outDir": "lib", - "checkJs": true, - "allowJs": true, - "declarationDir": "@types", - "resolveJsonModule": true, - "sourceMap": true - }, - "include":[ - "src/**/*" - ], - "exclude": ["src/**/*.test.ts"] -} \ No newline at end of file + "compilerOptions": { + "module": "commonjs", + "moduleResolution": "node", + "noImplicitAny": true, + "noImplicitThis": true, + "strictNullChecks": true, + "target": "ES6", + "declaration": true, + "esModuleInterop": true, + "lib": ["ES6", "ESNext"], + "outDir": "lib", + "checkJs": true, + "allowJs": true, + "declarationDir": "@types", + "resolveJsonModule": true, + "sourceMap": true, + "skipLibCheck": true + }, + "include": ["src/**/*"], + "exclude": ["src/**/*.test.ts"] +}