forked from zk-coins/sdk
-
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.13 KB
/
Copy pathtsconfig.json
File metadata and controls
34 lines (34 loc) · 1.13 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": {
// `paths` (the `@zkcoins/sdk` self-alias used by tests) implies a
// `baseUrl` deep in tsup's DTS rollup pass, which TS 6 flags as a
// 7.0-removal deprecation. We dropped the explicit `baseUrl`; this
// silences the residual deprecation the DTS build still surfaces.
"ignoreDeprecations": "6.0",
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2022", "DOM"],
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"resolveJsonModule": true,
"paths": {
"@zkcoins/sdk": ["./src/index.ts"]
}
},
"include": ["src/**/*", "test/**/*", "examples/**/*", "*.config.ts"],
"exclude": ["dist", "node_modules", "test/cross-rust/shim"]
}