diff --git a/packages/build/config/tsconfig.common.json b/packages/build/config/tsconfig.common.json index 306a2ebaac19..eb58cee2e096 100644 --- a/packages/build/config/tsconfig.common.json +++ b/packages/build/config/tsconfig.common.json @@ -7,8 +7,9 @@ "strictNullChecks": true, "resolveJsonModule": true, "strictBindCallApply": true, + "skipLibCheck": true, - "lib": ["es2018", "dom", "esnext.asynciterable"], + "lib": ["es2018", "esnext.asynciterable"], "module": "commonjs", "moduleResolution": "node", "target": "es2017", diff --git a/packages/cli/generators/project/templates/tsconfig.json.ejs b/packages/cli/generators/project/templates/tsconfig.json.ejs index e89fc7f68e4f..8ffddb55b332 100644 --- a/packages/cli/generators/project/templates/tsconfig.json.ejs +++ b/packages/cli/generators/project/templates/tsconfig.json.ejs @@ -15,8 +15,9 @@ "noImplicitAny": true, "strictNullChecks": true, "resolveJsonModule": true, + "skipLibCheck": true, - "lib": ["es2018", "dom", "esnext.asynciterable"], + "lib": ["es2018", "esnext.asynciterable"], "module": "commonjs", "moduleResolution": "node", "target": "es2017",