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"] +}