forked from ZeroTricks/lumo-tamer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 1.05 KB
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 1.05 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
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"lib": ["ES2022", "DOM"],
"moduleResolution": "node",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"baseUrl": "./src",
"paths": {
"@proton/crypto": ["./proton-shims/crypto.ts"],
"@proton/crypto/lib/subtle/aesGcm": ["./proton-shims/aesGcm.ts"],
"@proton/crypto/lib/subtle/hash": ["./proton-shims/hash.ts"],
"@proton/crypto/lib/utils": ["./proton-shims/crypto-lib-utils.ts"],
"@proton/shared/lib/apps/helper": ["./proton-shims/apps-helper.ts"],
"@proton/shared/lib/fetch/headers": ["./proton-shims/fetch-headers.ts"],
"lodash/isNil": ["./proton-shims/lodash-isNil.ts"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"],
"tsc-alias": {
"resolveFullPaths": true,
"verbose": false
}
}