From 6761447d3cce8f38f7ba460c28dc77b49dd8f16b Mon Sep 17 00:00:00 2001 From: Sam Reid Date: Tue, 7 May 2024 09:39:31 -0600 Subject: [PATCH] Add tsconfig, see https://github.com/phetsims/density-buoyancy-common/issues/123 --- tsconfig/density-buoyancy-suite/tsconfig.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tsconfig/density-buoyancy-suite/tsconfig.json diff --git a/tsconfig/density-buoyancy-suite/tsconfig.json b/tsconfig/density-buoyancy-suite/tsconfig.json new file mode 100644 index 000000000..0c77da136 --- /dev/null +++ b/tsconfig/density-buoyancy-suite/tsconfig.json @@ -0,0 +1,12 @@ +{ + "extends": "../../tsconfig-core.json", + // Explicitly list all entry points that we want to type check. + // Imported images/mipmaps/sounds are still type checked. + // This structure was determined in https://github.com/phetsims/chipper/issues/1245 + "include": [ + "../../../buoyancy/js/**/*", + "../../../buoyancy-basics/js/**/*", + "../../../density/js/**/*", + "../../../density-buoyancy-common/js/**/*" + ] +} \ No newline at end of file