forked from AcalaNetwork/chopsticks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
33 lines (33 loc) · 1.1 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"lib": ["esnext", "dom", "dom.iterable"],
"isolatedModules": true,
"module": "nodenext",
"moduleResolution": "nodenext",
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": false,
"target": "esnext",
"skipLibCheck": false,
"strict": true,
"declaration": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"composite": true,
"paths": {
"@tanssi/chopsticks": ["packages/chopsticks/src/index.ts"],
"@tanssi/chopsticks/*": ["packages/chopsticks/src/*"],
"@tanssi/chopsticks-core": ["packages/core/src/index.ts"],
"@tanssi/chopsticks-core/*": ["packages/core/src/*"],
"@tanssi/chopsticks-db": ["packages/db/src/index.ts"],
"@tanssi/chopsticks-db/*": ["packages/db/src/*"],
"@tanssi/chopsticks-testing": ["packages/testing/src/index.ts"],
"@tanssi/chopsticks-testing/*": ["packages/testing/src/*"],
"@tanssi/chopsticks-utils": ["packages/utils/src/index.ts"],
"@tanssi/chopsticks-utils/*": ["packages/utils/src/*"]
}
}
}