-
Notifications
You must be signed in to change notification settings - Fork 20
/
tsconfig.base.json
66 lines (66 loc) · 3.08 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"compilerOptions": {
"incremental": true,
"composite": true,
"target": "esnext",
"module": "ESNext",
"moduleResolution": "node",
"baseUrl": "./",
"experimentalDecorators": true,
"resolveJsonModule": true,
"declaration": true,
"preserveConstEnums": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"useUnknownInCatchVariables": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"skipLibCheck": true,
"sourceMap": true,
"paths": {
"@paima/aiken-mdx/*": ["./packages/cardano-contracts/aiken-mdx/*"],
"@paima/batcher-address-validator/*": ["./packages/batcher/address-validator/*"],
"@paima/batcher-db/*": ["./packages/batcher/db/*"],
"@paima/batcher-game-input-validator/*": ["./packages/batcher/game-input-validator/*"],
"@paima/batcher-runtime/*": ["./packages/batcher/runtime/*"],
"@paima/batcher-transaction-poster/*": ["./packages/batcher/batcher-transaction-poster/*"],
"@paima/batcher-utils/*": ["./packages/batcher/utils/*"],
"@paima/batcher-webserver/*": ["./packages/batcher/webserver/*"],
"@paima/broker/*": ["./packagers/node-sdk/paima-broker/*"],
"@paima/build-utils/*": ["./packages/build-utils/paima-build-utils/*"],
"@paima/chain-types/*": ["./packages/paima-sdk/paima-chain-types/*"],
"@paima/concise/*": ["./packages/paima-sdk/paima-concise/*"],
"@paima/config/*": ["./packages/paima-sdk/paima-config/*"],
"@paima/crypto/*": ["./packages/paima-sdk/paima-crypto/*"],
"@paima/db/*": ["./packages/node-sdk/paima-db/*"],
"@paima/events/*": ["./packages/paima-sdk/paima-events/*"],
"@paima/evm-contracts/*": ["./packages/contracts/evm-contracts/*"],
"@paima/executors/*": ["./packages/paima-sdk/paima-executors/*"],
"@paima/funnel/*": ["./packages/engine/paima-funnel/*"],
"@paima/mw-core/*": ["./packages/paima-sdk/paima-mw-core/*"],
"@paima/node-sdk/*": ["./packages/node-sdk/publish-wrapper/*"],
"@paima/prando/*": ["./packages/paima-sdk/paima-prando/*"],
"@paima/precompiles/*": ["./packages/paima-sdk/paima-precompiles/*"],
"@paima/providers/*": ["./packages/paima-sdk/paima-providers/*"],
"@paima/rest/*": ["./packages/engine/paima-rest/*"],
"@paima/runtime/*": ["./packages/engine/paima-runtime/*"],
"@paima/sdk/*": ["./packages/paima-sdk/paima-sdk/*"],
"@paima/sm/*": ["./packages/engine/paima-sm/*"],
"@paima/utils-backend/*": ["./packages/node-sdk/paima-utils-backend/*"],
"@paima/utils/*": ["./packages/paima-sdk/paima-utils/*"],
"@standalone/paima-batcher/*": ["./packages/batcher/batcher-standalone/*"],
"@paima/engine/*": ["./packages/node-sdk/paima-engine/*"]
}
},
"exclude": ["node_modules"]
}