-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.base.json
49 lines (49 loc) · 2.65 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@pubkey-stack/anchor": ["libs/anchor/src/index.ts"],
"@pubkey-stack/api-auth-data-access": ["libs/api/auth/data-access/src/index.ts"],
"@pubkey-stack/api-auth-feature": ["libs/api/auth/feature/src/index.ts"],
"@pubkey-stack/api-core-data-access": ["libs/api/core/data-access/src/index.ts"],
"@pubkey-stack/api-core-feature": ["libs/api/core/feature/src/index.ts"],
"@pubkey-stack/api-identity-data-access": ["libs/api/identity/data-access/src/index.ts"],
"@pubkey-stack/api-identity-feature": ["libs/api/identity/feature/src/index.ts"],
"@pubkey-stack/api-user-data-access": ["libs/api/user/data-access/src/index.ts"],
"@pubkey-stack/api-user-feature": ["libs/api/user/feature/src/index.ts"],
"@pubkey-stack/sdk": ["libs/sdk/src/index.ts"],
"@pubkey-stack/tools": ["libs/tools/src/index.ts"],
"@pubkey-stack/web-auth-data-access": ["libs/web/auth/data-access/src/index.ts"],
"@pubkey-stack/web-auth-feature": ["libs/web/auth/feature/src/index.ts"],
"@pubkey-stack/web-auth-ui": ["libs/web/auth/ui/src/index.ts"],
"@pubkey-stack/web-core-data-access": ["libs/web/core/data-access/src/index.ts"],
"@pubkey-stack/web-core-feature": ["libs/web/core/feature/src/index.ts"],
"@pubkey-stack/web-core-ui": ["libs/web/core/ui/src/index.ts"],
"@pubkey-stack/web-dev-feature": ["libs/web/dev/feature/src/index.ts"],
"@pubkey-stack/web-home-feature": ["libs/web/home/feature/src/index.ts"],
"@pubkey-stack/web-identity-data-access": ["libs/web/identity/data-access/src/index.ts"],
"@pubkey-stack/web-identity-ui": ["libs/web/identity/ui/src/index.ts"],
"@pubkey-stack/web-settings-feature": ["libs/web/settings/feature/src/index.ts"],
"@pubkey-stack/web-solana-data-access": ["libs/web/solana/data-access/src/index.ts"],
"@pubkey-stack/web-solana-feature": ["libs/web/solana/feature/src/index.ts"],
"@pubkey-stack/web-solana-ui": ["libs/web/solana/ui/src/index.ts"],
"@pubkey-stack/web-user-data-access": ["libs/web/user/data-access/src/index.ts"],
"@pubkey-stack/web-user-feature": ["libs/web/user/feature/src/index.ts"],
"@pubkey-stack/web-user-ui": ["libs/web/user/ui/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}