From 71972dc0e5611fbbe8b3885eb18d19563545cd4b Mon Sep 17 00:00:00 2001 From: Daniel Bankhead Date: Thu, 10 Oct 2024 08:01:47 -0700 Subject: [PATCH] feat!: Set `composite: true` in `tsconfig-google.json` (#899) * feat!: Set `composite: true` in `tsconfig-google.json` * chore: include `.eslintrc.json` --------- Co-authored-by: Tony Coconate --- tsconfig-google.json | 2 +- tsconfig.json | 10 ++-------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/tsconfig-google.json b/tsconfig-google.json index 392fd1d4..905efe9b 100644 --- a/tsconfig-google.json +++ b/tsconfig-google.json @@ -2,7 +2,7 @@ "compilerOptions": { "allowUnreachableCode": false, "allowUnusedLabels": false, - "declaration": true, + "composite": true, "forceConsistentCasingInFileNames": true, "lib": ["es2018"], "module": "commonjs", diff --git a/tsconfig.json b/tsconfig.json index dfb3be02..1a596a1c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,12 +5,6 @@ "outDir": "build", "resolveJsonModule": true }, - "include": [ - "src/**/*.ts", - "test/**/*.ts" - ], - "exclude": [ - "test/fixtures/**/*.*", - "template/**/*.*", - ] + "include": [".eslintrc.json", "src/**/*.ts", "test/**/*.ts"], + "exclude": ["test/fixtures/**/*.*", "template/**/*.*"] }