-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (29 loc) · 974 Bytes
/
tsconfig.json
File metadata and controls
29 lines (29 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
* This files demonstrates the pattern for a repo that has both browser and NodeJS code in it.
*
* NOTE: we do not extend tsconfig-core.json. This is a composite just for referencing the individual typescript
* sub-projects within this repo.
*
* NOTE: By default, TypeScript includes all files below the tsconfig.json location. However, we must override that to
* blank it out, so that we can let each browser/node decide what they want to include.
*
* NOTE: We do not need to set "composite": true here because TypeScript is smart enough to recognize that setting with
* "references" set and an empty list of "files".
*
* @author Michael Kauzmann (PhET Interactive Simulations)
* @author Sam Reid (PhET Interactive Simulations)
*/
{
"files": [],
"references": [
{
"path": "./tsconfig/buildtools/tsconfig.json"
},
{
"path": "./js/browser/tsconfig.json"
},
{
"path": "./js/browser-and-node/tsconfig.json"
}
]
}