From 12c38b235fe993c207628424d40c725f8fceeddd Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Sat, 18 Jul 2020 04:03:37 +0200 Subject: [PATCH] next fix --- tsconfig.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 3110487..826b7ad 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,15 +3,14 @@ "module": "commonjs", "moduleResolution": "node", "target": "es5", - "lib": ["es2015", "dom"], + "lib": ["esnext", "dom"], "outDir": "dist/cjs", "jsx": "react", "esModuleInterop": true, "sourceMap": true, "declaration": true, - "strictNullChecks": false, - "noEmitOnError": true + "strictNullChecks": false }, - "include": ["src/**/*"], + "include": ["./src/@types", "./src/index.ts"], "exclude": ["node_modules", "dist", "example"] }