forked from deephaven/web-client-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
28 lines (28 loc) · 968 Bytes
/
tsconfig.json
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
{
"extends": "./packages/tsconfig/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
// Override node_modules/@types
"typeRoots": ["./@types", "./node_modules/@types"],
"paths": {
"@deephaven/*": ["./packages/*/src"],
// This is used to override node_modules/@types
// https://github.com/microsoft/TypeScript/issues/22217
"*": ["*", "./@types/*"]
}
},
"files": [],
"exclude": ["**/node_modules/**/*"],
"watchOptions": {
"excludeDirectories": ["**/node_modules", "**/dist"]
},
"references": [
// `npm run types` relies on project references to build types. All packages
// must be included in the reference tree somewhere. Top-level packages need
// to be included here, and their respective `tsconfig.json` files should
// reference their dependencies.
{ "path": "./packages/code-studio" },
{ "path": "./packages/embed-widget" },
{ "path": "./packages/jsapi-nodejs" }
]
}