forked from magic8bot/magic8bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
28 lines (28 loc) · 824 Bytes
/
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
{
"compilerOptions": {
"target": "es2018",
"module": "commonjs",
"lib": ["es2018", "dom"],
"moduleResolution": "node",
"sourceMap": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"jsx": "react",
"baseUrl": ".",
"paths": {
"@lib": ["./src/lib/index.ts"],
"@core": ["./src/core/index.ts"],
"@engine": ["./src/engine/index.ts"],
"@exchange": ["./src/exchange/index.ts"],
"@strategy": ["./src/strategy/index.ts"],
"@store": ["./src/store/index.ts"],
"@m8bTypes": ["./src/types/index.ts"],
"@util": ["./src/util/index.ts"]
},
"typeRoots": ["./node_modules/@types", "./src/types"],
"outDir": "./dist",
"rootDir": "./src"
},
"exclude": ["./legacy", "./client"]
}