diff --git a/packages/internal/tsconfig.json b/packages/internal/tsconfig.json index f4bccfe777f..8baa1d41626 100644 --- a/packages/internal/tsconfig.json +++ b/packages/internal/tsconfig.json @@ -7,11 +7,8 @@ "noImplicitAny": true, }, "include": [ - "*.js", - "*.ts", - "src/**/*.js", - "src/**/*.ts", - "test/**/*.js", - "test/**/*.ts" + "src", + "test", + "tools" ] } diff --git a/packages/notifier/tsconfig.json b/packages/notifier/tsconfig.json index 6affe6ed970..2d0d78172fa 100644 --- a/packages/notifier/tsconfig.json +++ b/packages/notifier/tsconfig.json @@ -4,6 +4,7 @@ "compilerOptions": {}, "include": [ "src/**/*.js", + "subscribe.*", // exclude exported.js so that stub doesn't overwrite exportd.d.ts "test/**/*.js", "tools/**/*.js", diff --git a/packages/orchestration/tsconfig.json b/packages/orchestration/tsconfig.json index ade1cfe3d88..27d898bef01 100644 --- a/packages/orchestration/tsconfig.json +++ b/packages/orchestration/tsconfig.json @@ -3,6 +3,7 @@ "include": [ "build", "index.js", + "scripts", "src", "test", "tools" diff --git a/packages/vow/tsconfig.json b/packages/vow/tsconfig.json index ce21a7790cc..2aee5b3dc0c 100644 --- a/packages/vow/tsconfig.json +++ b/packages/vow/tsconfig.json @@ -7,9 +7,7 @@ "include": [ "*.js", "*.ts", - "src/**/*.js", - "src/**/*.ts", - "test/**/*.js", - "test/**/*.ts" + "src", + "test" ] }