diff --git a/tsconfig.json b/tsconfig.json index dc59414d663f..782e4f534abe 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,8 +7,8 @@ "noFallthroughCasesInSwitch": true, "noImplicitAny": true, "noImplicitThis": true, - "noUnusedParameters": false, // The linter is used for these. - "noUnusedLocals": false, // The linter is used for these. + "noUnusedParameters": false, + "noUnusedLocals": false, "outDir": "./dist", "rootDir": ".", "skipLibCheck": true, @@ -45,7 +45,6 @@ "@angular-devkit/build-angular": [ "./packages/angular_devkit/build_angular/src/index" ], "@angular-devkit/build-webpack": [ "./packages/angular_devkit/build_webpack/src/index" ], "@ngtools/webpack": [ "./packages/ngtools/webpack/src/index" ], - "@ngtools/webpack/*": [ "./packages/ngtools/webpack/*" ], "@schematics/angular": [ "./packages/schematics/angular/index" ] } }, @@ -53,19 +52,19 @@ "suppressTsconfigOverrideWarnings": true }, "exclude": [ - "bazel-*/**/*", + "bazel-out/**/*", "dist/**/*", - "etc/cli.angular.io", - "node_modules/**/*", + "dist-schema/**", + "etc/api/**/*", + "etc/cli.angular.io/**/*", + "**/node_modules/**/*", + "**/third_party/**/*", "packages/_/devkit/**/*files/**/*", "packages/schematics/*/*/*files/**/*", "packages/angular_devkit/*/test/**/*", - "tmp/**/*", - "scripts/patches/**/*", "tests/**/*", "tools/**/*", "benchmark/**/*", - "etc/api/**/*", - "integration/**" + "integration/**/*" ] }