Skip to content

Commit

Permalink
Move tsconfig-chipper.json to chipper, see #1523
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Nov 22, 2024
1 parent 628f5ea commit eda6586
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion js/common/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// this reference needs to be duplicated with the super config, because references to not extend
"references": [
{
"path": "../../../perennial-alias/tsconfig-chipper.json"
"path": "../../tsconfig-chipper.json"
}
]
}
2 changes: 1 addition & 1 deletion js/data/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// this reference needs to be duplicated with the super config, because references to not extend
"references": [
{
"path": "../../../perennial-alias/tsconfig-chipper.json"
"path": "../../tsconfig-chipper.json"
}
]
}
2 changes: 1 addition & 1 deletion js/grunt/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// this reference needs to be duplicated with the super config, because references to not extend
"references": [
{
"path": "../../../perennial-alias/tsconfig-chipper.json"
"path": "../../tsconfig-chipper.json"
}
]
}
2 changes: 1 addition & 1 deletion js/phet-io/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// this reference needs to be duplicated with the super config, because references to not extend
"references": [
{
"path": "../../../perennial-alias/tsconfig-chipper.json"
"path": "../../tsconfig-chipper.json"
}
]
}
2 changes: 1 addition & 1 deletion js/scripts/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// this reference needs to be duplicated with the super config, because references to not extend
"references": [
{
"path": "../../../perennial-alias/tsconfig-chipper.json"
"path": "../../tsconfig-chipper.json"
}
]
}
2 changes: 1 addition & 1 deletion tsconfig-chipper-node.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
],
"references": [
{
"path": "../perennial-alias/tsconfig-chipper.json"
"path": "./tsconfig-chipper.json"
}
]
}
22 changes: 11 additions & 11 deletions tsconfig-chipper.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"extends": "./tsconfig/tsconfig-node.json",
"extends": "../perennial-alias/tsconfig/tsconfig-node.json",
// Entry points for checked out resources that may not be on main, but need to version together. These must be usable
// by chipper
"include": [
"js/common/**/*",
"js/npm-dependencies/**/*",
"js/grunt/tasks/util/**/*",
"js/test/puppeteerQUnit.js",
"js/grunt/check.ts",
"js/eslint/lint.ts",
"js/eslint/divideIntoBatches.ts",
"js/eslint/getLintCLIOptions.ts",
"js/grunt/tasks/lint.ts",
"js/phet-types-module.d.ts",
"../perennial-alias/js/common/**/*",
"../perennial-alias/js/npm-dependencies/**/*",
"../perennial-alias/js/grunt/tasks/util/**/*",
"../perennial-alias/js/test/puppeteerQUnit.js",
"../perennial-alias/js/grunt/check.ts",
"../perennial-alias/js/eslint/lint.ts",
"../perennial-alias/js/eslint/divideIntoBatches.ts",
"../perennial-alias/js/eslint/getLintCLIOptions.ts",
"../perennial-alias/js/grunt/tasks/lint.ts",
"../perennial-alias/js/phet-types-module.d.ts",
// TODO: should we split buildjson into a subsection that can be used by this one too (just phet-core?) // TODO: split buildjson into a subsection that can be used by this one too (just phet-core?)
"../phet-core/js/types/**/*",
"../tandem/js/phet-io-types.ts"
Expand Down

0 comments on commit eda6586

Please sign in to comment.