From ddd6750dfb2739ddf03bec5aa62fdc13b68c615f Mon Sep 17 00:00:00 2001 From: Michael Kauzmann Date: Tue, 22 Oct 2024 16:09:35 -0600 Subject: [PATCH] point to perennial-alias for lint and type checking config, https://github.com/phetsims/chipper/issues/1505 --- eslint.config.mjs | 2 +- tsconfig.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 961d2326..98a0cf83 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -7,7 +7,7 @@ * @author Michael Kauzmann (PhET Interactive Simulations) */ -import phetLibraryEslintConfig from '../chipper/eslint/phet-library.eslint.config.mjs'; +import phetLibraryEslintConfig from '../perennial-alias/js/eslint/phet-library.eslint.config.mjs'; export default [ ...phetLibraryEslintConfig, diff --git a/tsconfig.json b/tsconfig.json index af1cb51d..892f406c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../chipper/tsconfig/shared/tsconfig-browser.json", + "extends": "../perennial-alias/tsconfig/shared/tsconfig-browser.json", "include": [ "js/**/*", "images/**/*", @@ -11,7 +11,7 @@ "path": "../twixt/tsconfig.json" }, { - "path": "../chipper/tsconfig/buildjson/tsconfig.json" + "path": "../perennial-alias/tsconfig/buildjson/tsconfig.json" } ] }