diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json index a1af6fd..ac24808 100644 --- a/tsconfig.eslint.json +++ b/tsconfig.eslint.json @@ -1,8 +1,7 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "lib": ["dom", "dom.iterable", "es2018"], - "skipLibCheck": true + "lib": ["dom", "dom.iterable", "es2018"] }, "exclude": ["node_modules", "test"] } diff --git a/tsconfig.json b/tsconfig.json index f22be23..a16132c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,6 +11,7 @@ "outDir": "dist", "resolveJsonModule": true, "rootDir": "src", + "skipLibCheck": true, "sourceMap": true, "strict": true, "target": "es2018" diff --git a/tsconfig.webviews.json b/tsconfig.webviews.json index 16c5e2b..8c84105 100644 --- a/tsconfig.webviews.json +++ b/tsconfig.webviews.json @@ -2,8 +2,7 @@ "extends": "./tsconfig.json", "compilerOptions": { "lib": ["dom", "dom.iterable", "es2018"], - "outDir": "dist/webviews", - "skipLibCheck": true + "outDir": "dist/webviews" }, "include": ["src/config.ts", "src/webviews/protocol.ts", "src/webviews/apps/**/*"], "exclude": ["node_modules", "test"]