Skip to content

Commit

Permalink
Add tsconfig projects for phet-core, axon, tandem, dot, kite, scenery…
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Oct 21, 2024
1 parent b4ed398 commit 568729c
Show file tree
Hide file tree
Showing 5 changed files with 78 additions and 0 deletions.
19 changes: 19 additions & 0 deletions tsconfig/axon-tandem/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"extends": "../../tsconfig-core.json",
"references": [
{
"path": "../phet-core/tsconfig.json"
}
],
"include": [
"../../../axon/js/**/*",
"../../../tandem/js/**/*",
"../../../phet-core/js/EnumerationIO.js",
"../../../dot/js/Range.js",
"../../../dot/js/dot.js"
],
"exclude": [
"../../../**/*test*",
"../../../tandem/js/**/*test*"
]
}
14 changes: 14 additions & 0 deletions tsconfig/dot/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"extends": "../../tsconfig-core.json",
"references": [
{
"path": "../axon-tandem"
}
],
"include": [
"../../../dot/js/**/*",
],
"exclude": [
"../../../dot/js/**/*test*"
]
}
14 changes: 14 additions & 0 deletions tsconfig/kite/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"extends": "../../tsconfig-core.json",
"references": [
{
"path": "../dot"
}
],
"include": [
"../../../kite/js/**/*",
],
"exclude": [
"../../../kite/js/**/*test*"
]
}
10 changes: 10 additions & 0 deletions tsconfig/phet-core/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"extends": "../../tsconfig-core.json",
"include": [
"../../../phet-core/js/**/*"
],
"exclude": [
"../../../phet-core/js/**/*test*",
"../../../phet-core/js/EnumerationIO.js"
]
}
21 changes: 21 additions & 0 deletions tsconfig/scenery/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"extends": "../../tsconfig-core.json",
"references": [
{
"path": "../kite"
}
],
"include": [
"../../../scenery/js/**/*",
"../../../utterance-queue/js/**/*",
"../../../sun/js/SunConstants.js",
"../../../sun/js/sun.js",
"../../../phetcommon/js/util/StringUtils.js",
"../../../phetcommon/js/view/ModelViewTransform2.js",
"../../../phetcommon/js/phetcommon.js"
],
"exclude": [
"../../../scenery/js/**/*test*",
"../../../utterance-queue/js/**/*test*"
]
}

0 comments on commit 568729c

Please sign in to comment.