forked from interlay/interbtc-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig-base.json
29 lines (29 loc) · 964 Bytes
/
tsconfig-base.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
29
{
"ts-node": {
"experimentalSpecifierResolution": "node",
"moduleTypes": {
"src/interfaces/**/*": "esm"
}
},
"compilerOptions": {
"declaration": true,
"skipLibCheck": true,
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true,
"baseUrl": "./",
"resolveJsonModule": true,
"sourceMap": true,
"moduleResolution": "node",
"lib": ["ES2019"],
"paths": {
"@polkadot/api/augment": ["src/interfaces/augment-api.ts"],
"@polkadot/types/augment": ["src/interfaces/augment-types.ts"],
"@polkadot/types/lookup": ["src/interfaces/types-lookup.ts"],
"bitcoinjs-lib/src/bufferutils": ["node_modules/bitcoinjs-lib/types/bufferutils"],
"@interlay/interbtc-api/*": ["src/*"]
}
},
"include": ["src/**/*", "scripts/**/*.ts"],
"exclude": ["./node_modules/*"]
}