-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (26 loc) · 912 Bytes
/
tsconfig.json
File metadata and controls
26 lines (26 loc) · 912 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
{
"compilerOptions": {
"incremental": true,
"target": "esnext",
"module": "commonjs",
"declaration": true,
"sourceMap": true,
"composite": true,
"strict": true,
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@oak-network/api-augment": ["./packages/api-augment/src"],
"@oak-network/api-augment/*": ["./packages/api-augment/src/*"],
"@oak-network/types": ["./packages/types/src"],
"@oak-network/types/*": ["./packages/types/src/*"],
"@oak-network/config": ["./packages/config/src"],
"@oak-network/config/*": ["./packages/config/src/*"],
"@oak-network/adapter": ["./packages/adapter/src"],
"@oak-network/adapter/*": ["./packages/adapter/src/*"],
"@oak-network/sdk": ["./packages/sdk/src"],
"@oak-network/sdk/*": ["./packages/sdk/src/*"]
}
}
}