-
Notifications
You must be signed in to change notification settings - Fork 567
/
tsconfig.base.json
59 lines (59 loc) · 2.83 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
{
"compilerOptions": {
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext"],
"maxNodeModuleJsDepth": 10,
"module": "esnext",
"moduleResolution": "bundler",
"noEmit": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"strict": true,
"target": "es2021",
"skipLibCheck": true,
"types": ["webpack-env", "jest", "vitest/globals"],
"baseUrl": ".",
"paths": {
"proton-mail/*": ["./applications/mail/src/app/*"],
"proton-pass-extension/*": ["./applications/pass-extension/src/*"],
"proton-pass-web/*": ["./applications/pass/src/*"],
"@proton/activation/*": ["./packages/activation/*"],
"@proton/andromeda": ["./packages/wasm/andromeda/*"],
"@proton/atoms/*": ["./packages/atoms/*"],
"@proton/chargebee": ["./packages/chargebee/*"],
"@proton/colors/*": ["./packages/colors/*"],
"@proton/components/*": ["./packages/components/*"],
"@proton/config/*": ["./packages/config/*"],
"@proton/cross-storage/*": ["./packages/cross-storage/*"],
"@proton/drive-store/*": ["./packages/drive-store/*"],
"@proton/encrypted-search/*": ["./packages/encrypted-search/*"],
"@proton/eslint-config-proton/*": ["./packages/eslint-config-proton/*"],
"@proton/features/*": ["./packages/features/*"],
"@proton/hooks/*": ["./packages/hooks/*"],
"@proton/i18n/*": ["./packages/i18n/*"],
"@proton/key-transparency/*": ["./packages/key-transparency/*"],
"@proton/llm/*": ["./packages/llm/*"],
"@proton/metrics/*": ["./packages/metrics/*"],
"@proton/pack/*": ["./packages/pack/*"],
"@proton/pass/*": ["./packages/pass/*"],
"@proton/payments/*": ["./packages/payments/*"],
"@proton/polyfill/*": ["./packages/polyfill/*"],
"@proton/recovery-kit/*": ["./packages/recovery-kit/*"],
"@proton/shared/*": ["./packages/shared/*"],
"@proton/sieve/*": ["./packages/sieve/*"],
"@proton/srp/*": ["./packages/srp/*"],
"@proton/stylelint-config-proton/*": ["./packages/stylelint-config-proton/*"],
"@proton/styles/*": ["./packages/styles/*"],
"@proton/testing/*": ["./packages/testing/*"],
"@proton/unleash/*": ["./packages/unleash/*"],
"@proton/utils/*": ["./packages/utils/*"],
"@proton/wallet": ["./packages/wallet/*"]
}
},
"exclude": ["**/node_modules/*", "**/dist/*", "**/.*/", "./packages/wallet/tests", "dangerfile.ts"]
}