-
Notifications
You must be signed in to change notification settings - Fork 250
Expand file tree
/
Copy pathtsconfig.check.json
More file actions
41 lines (41 loc) · 1.37 KB
/
tsconfig.check.json
File metadata and controls
41 lines (41 loc) · 1.37 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
// Top-level tsconfig for validation across the repo
{
"extends": [
"./tsconfig.json"
],
"compilerOptions": {
"incremental": true,
"noEmit": true,
// Must be false because we have non-relative .ts imports and when that
// error is found it suppresses other errors when "incremental: true".
// We want incremental for speed so filter out import errors.
"rewriteRelativeImportExtensions": false,
"paths": {
// Each package to avoid error TS5061: Pattern '@agoric/*/bundles/bundle-*.js' can have at most one '*' character.
"@agoric/packages/inter-protocol/bundles/bundle-*.js": [
"./types/bundles-stub.d.ts"
],
"@agoric/packages/zoe/bundles/bundle-*.js": [
"./types/bundles-stub.d.ts"
]
},
},
"exclude": [
"a3p-integration", // vendored package problems
"multichain-testing", // not relevant for coding loop (and noble-usdn-lab.ts is very slow)
"**/build",
"**/bundles",
"**/coverage",
"**/dist",
"**/docs",
"**/vendor",
"**/*.umd.js"
],
"include": [
// .ts/.mts anywhere in the repo
"./**/*.*ts",
// .js/.mjs only in our packages and services
"./packages/**/*.*js",
"./services/**/*.*js"
]
}