From bb7aaebd97a6eadd9eaf07d0d27a006c86eca1ea Mon Sep 17 00:00:00 2001 From: Sam Reid Date: Fri, 19 Nov 2021 07:14:01 -0700 Subject: [PATCH] Add sun demo and tests tsconfig, see https://github.com/phetsims/chipper/issues/1134 --- tsconfig-demo.json | 12 ++++++++++++ tsconfig-tests.json | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 tsconfig-demo.json create mode 100644 tsconfig-tests.json diff --git a/tsconfig-demo.json b/tsconfig-demo.json new file mode 100644 index 00000000..9a504945 --- /dev/null +++ b/tsconfig-demo.json @@ -0,0 +1,12 @@ +{ + "extends": "../chipper/tsconfig-core.json", + "references": [ + { + "path": "../joist" + } + ], + "include": [ + "js/sun-main.js", + "js/demo/**/*" + ] +} diff --git a/tsconfig-tests.json b/tsconfig-tests.json new file mode 100644 index 00000000..7083aec5 --- /dev/null +++ b/tsconfig-tests.json @@ -0,0 +1,12 @@ +{ + "extends": "../chipper/tsconfig-core.json", + "references": [ + { + "path": "../joist" + } + ], + "include": [ + "js/**/*test*", + "js/**/*Test*" + ] +}