Skip to content

Commit

Permalink
Factor out browser tsconfig, and check files directly under js/, see p…
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Sep 27, 2024
1 parent e5d67ba commit 7c2655a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 40 deletions.
11 changes: 0 additions & 11 deletions js/browser-tools/tsconfig.json

This file was deleted.

11 changes: 0 additions & 11 deletions js/client/tsconfig.json

This file was deleted.

11 changes: 0 additions & 11 deletions js/report/tsconfig.json

This file was deleted.

15 changes: 15 additions & 0 deletions js/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// This is the tsconfig for browser files, for node files, see within each node-like subdirectory.
"extends": "../../chipper/tsconfig-core.json",
"include": [
"browser-tools/**/*",
"client/**/*",
"report/**/*",
"*"
],
"references": [
{
"path": "../../chipper/tsconfig/buildjson/tsconfig.json"
}
]
}
8 changes: 1 addition & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,7 @@

// BROWSER
{
"path": "js/browser-tools/tsconfig.json"
},
{
"path": "js/client/tsconfig.json"
},
{
"path": "js/report/tsconfig.json"
"path": "js/tsconfig.json"
},

// NODE
Expand Down

0 comments on commit 7c2655a

Please sign in to comment.