-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
39 lines (39 loc) · 1.64 KB
/
tsconfig.base.json
File metadata and controls
39 lines (39 loc) · 1.64 KB
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@myWeb3/chain-chat/blockchain/types": ["apps/chain-chat/blockchain/types"],
"@myWeb3/chain-chat/ethereum/feature/ethereum": ["libs/chain-chat/ethereum/feature/ethereum/src/index.ts"],
"@myWeb3/chain-chat/ethereum/guard/only-wallet-installed": [
"libs/chain-chat/ethereum/guard/only-wallet-installed/src/index.ts"
],
"@myWeb3/chain-chat/no-wallet-connect": ["libs/chain-chat/no-wallet-connect/src/index.ts"],
"@myWeb3/chain-chat/shared/app-config": ["libs/chain-chat/shared/app-config/src/index.ts"],
"@myWeb3/chain-chat/shared/directives/fix-scroll-to-bottom": [
"libs/chain-chat/shared/directives/fix-scroll-to-bottom/src/index.ts"
],
"@myWeb3/chain-chat/shared/pipes/address-shrink-pipe": [
"libs/chain-chat/shared/pipes/address-shrink-pipe/src/index.ts"
],
"@myWeb3/chain-chat/shared/ui/button": ["libs/chain-chat/shared/ui/button/src/index.ts"],
"@myWeb3/chain-chat/shared/ui/panel": ["libs/chain-chat/shared/ui/panel/src/index.ts"],
"@myWeb3/chain-chat/shared/ui/text-input": ["libs/chain-chat/shared/ui/text-input/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"],
"include": ["./scripts", "./test"],
"files": ["./hardhat.config.ts"]
}