Skip to content

Commit

Permalink
Add tsconfig, see #1055
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jun 21, 2021
1 parent dc1132c commit 3205615
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 1 deletion.
14 changes: 14 additions & 0 deletions tsconfig/acid-base-solutions/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"extends": "../../tsconfig-core.json",
"references": [
{
"path": "../joist"
}
],
"include": [
"../../../acid-base-solutions/js/**/*",
"../../../acid-base-solutions/sounds/**/*",
"../../../acid-base-solutions/mipmaps/**/*",
"../../../acid-base-solutions/images/**/*"
]
}
14 changes: 14 additions & 0 deletions tsconfig/area-model-algebra/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"extends": "../../tsconfig-core.json",
"references": [
{
"path": "../area-model-common"
}
],
"include": [
"../../../area-model-algebra/js/**/*",
"../../../area-model-algebra/sounds/**/*",
"../../../area-model-algebra/mipmaps/**/*",
"../../../area-model-algebra/images/**/*"
]
}
20 changes: 20 additions & 0 deletions tsconfig/area-model-common/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"extends": "../../tsconfig-core.json",
"references": [
{
"path": "../joist"
},
{
"path": "../vegas"
}
],
"include": [
"../../../area-model-common/js/**/*",
"../../../area-model-common/sounds/**/*",
"../../../area-model-common/mipmaps/**/*",
"../../../area-model-common/images/**/*"
],
"exclude": [
"../../../area-model-common/js/**/*test*"
]
}
2 changes: 1 addition & 1 deletion tsconfig/scenery-phet/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"../../../scenery-phet/images/**/*"
],
"exclude": [
"../../../scenery-phet/js/**/*test*",
"../../../scenery-phet/js/**/*tests.js", // ConductivityTesterNode.js
"../../../scenery-phet/js/scenery-phet-main.js",
"../../../scenery-phet/js/demo/**/*",

Expand Down
19 changes: 19 additions & 0 deletions tsconfig/vegas/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"extends": "../../tsconfig-core.json",
"references": [
{
"path": "../joist"
}
],
"include": [
"../../../vegas/js/**/*",
"../../../vegas/sounds/**/*",
"../../../vegas/images/**/*",
"../../../vegas/mipmaps/**/*"
],
"exclude": [
"../../../vegas/js/**/*tests.js",
"../../../vegas/js/vegas-main.js",
"../../../vegas/js/demo/**/*"
]
}

0 comments on commit 3205615

Please sign in to comment.