-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
41 lines (41 loc) · 1.18 KB
/
tsconfig.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
30
31
32
33
34
35
36
37
38
39
40
41
{
"ts-node": {
"esm": true,
},
"compilerOptions": {
"target": "esnext",
"module": "EsNext",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"allowImportingTsExtensions": true,
// ... other options from Bridge's tsconfig ...
"baseUrl": ".",
"paths": {
"src/*": ["src/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"emitDeclarationOnly": true,
"outDir": "build",
"typeRoots": ["./node_modules/@polkadot/ts", "./node_modules/@types"],
"jsx": "preserve",
"declaration": true,
"strict": true,
"noImplicitAny": false,
// "noUnusedLocals": true,
// "noImplicitReturns": true,
"moduleResolution": "Node",
"sourceMap": true
},
// Include and exclude can be adjusted as per your project's structure
"include": ["./**/*", "src/**/*"],
"exclude": [
"dist",
"build",
"src/swaps/movr/movrSwap2.ts",
"src/swaps/movr/movrSwap3.ts",
"src/swaps/movr/testMovr.ts",
"src/scripts/polkadotTest.ts",
"src/testScripts/"
]
}