-
Notifications
You must be signed in to change notification settings - Fork 676
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (22 loc) · 895 Bytes
/
tsconfig.json
File metadata and controls
22 lines (22 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"extends": "@tsconfig/node20/tsconfig.json",
"include": ["./packages/*/types/**/*.d.ts"],
"compilerOptions": {
"noEmit": true,
"baseUrl": ".",
"skipLibCheck": false,
"paths": {
"metro": ["./packages/metro/types"],
"metro/private/*": ["./packages/metro/types/*"],
"metro-core/private/*": ["./packages/metro-core/types/*"],
"metro-resolver/private/*": ["./packages/metro-resolver/types/*"],
"metro-runtime/src/*": ["./packages/metro-runtime/types/*"],
"metro-*": ["./packages/metro-*/types"],
// Mappings for main entry points which are not "src/index.js". Required
// only for this tsconfig - external consumers will read the "main" field
// and find the adjacent typedef file.
"metro-source-map": ["./packages/metro-source-map/types/source-map.d.ts"],
"ob1": ["./packages/ob1/types/ob1.d.ts"]
}
}
}