-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
40 lines (40 loc) · 1.34 KB
/
tsconfig.json
File metadata and controls
40 lines (40 loc) · 1.34 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
40
{
"compilerOptions": {
"target": "esnext",
"lib": ["esnext", "dom"],
"types": ["bun"],
"moduleDetection": "force",
"module": "esnext",
"moduleResolution": "bundler",
"paths": {
"ts-security": ["./packages/core/src"],
"ts-security-utils": ["./packages/utils/src"],
"ts-base-x": ["./packages/base-x/src"],
"@stacksjs/ts-hash": ["./packages/hash/src"],
"ts-pem": ["./packages/pem/src"],
"ts-pki": ["./packages/pki/src"],
"ts-asn1": ["./packages/asn1/src"],
"ts-rsa": ["./packages/rsa/src"],
"ts-jsbn": ["./packages/jsbn/src"],
"ts-pkcs": ["./packages/pkcs/src"],
"ts-oids": ["./packages/oids.ts"],
"ts-aes": ["./packages/aes/src"],
"ts-prime-gen": ["./packages/prime/src"]
},
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"strict": true,
"strictNullChecks": true,
"noFallthroughCasesInSwitch": true,
"declaration": true,
"noEmit": true,
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedDeclarations": true,
"verbatimModuleSyntax": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true
},
"exclude": ["docs", "docs/**", "packages/wip", "packages/wip/**", "test/unit", "test/unit/**", "pickier.config.ts", "dist", "node_modules", "src"]
}