From abc8d541e3225e91b921b49b782a0442e70c4daa Mon Sep 17 00:00:00 2001 From: Michael Kauzmann Date: Mon, 30 Sep 2024 11:17:39 -0600 Subject: [PATCH] move shared tsconfig to shared/ dir, https://github.com/phetsims/chipper/issues/1463 --- eslint.config.mjs | 2 +- tsconfig-node.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 2c5f8fa..09e36e0 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -45,7 +45,7 @@ export default [ rules: { // We travel with perennial, always on main and do not allow dependencies on versioned repos like phet-core, - // so cannot use IntentionalAny + // so cannot use IntentionalAny. TODO: https://github.com/phetsims/chipper/issues/1465 '@typescript-eslint/no-explicit-any': 'off' } }, diff --git a/tsconfig-node.json b/tsconfig-node.json index 64d5b79..c74ea05 100644 --- a/tsconfig-node.json +++ b/tsconfig-node.json @@ -1,5 +1,5 @@ { - "extends": "../chipper/tsconfig-node.json", + "extends": "../chipper/tsconfig/shared/tsconfig-node.json", "include": [ "js/config/**/*", "js/grunt/**/*",