-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathtsconfig.check.json
More file actions
26 lines (26 loc) · 917 Bytes
/
tsconfig.check.json
File metadata and controls
26 lines (26 loc) · 917 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.json",
"exclude": [
"src/glide.ts",
"scripts",
// --------- from `./tsconfig.json` -----------
"_dev",
"engine",
"node_modules",
"src/glide/bundled",
"src/glide/docs/dist/snippets",
// bundled types, tested separately and excluded here so that type changes don't
// require running bundle all the time
"src/glide/browser/base/content/bundled.d.ts",
"src/glide/browser/base/content/dist/bundled.compiled.d.ts",
// needs to be tested individually
"src/glide/browser/base/content/test/config/types",
// includes preprocessor annotations
"src/browser/app/profile/glide.js",
"src/glide/browser/base/content/dist",
"src/glide/browser/base/content/test/*/dist",
"src/glide/browser/browser/base/content/utils/dist",
"src/glide/browser/browser/actors/dist"
]
}