mirror of
https://github.com/privacy-scaling-explorations/zk-kit.git
synced 2026-01-09 14:27:55 -05:00
25 lines
614 B
JSON
25 lines
614 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"strict": true,
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"esModuleInterop": true,
|
|
"preserveConstEnums": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"typeRoots": ["node_modules/@types", "types"],
|
|
"paths": {
|
|
"@zk-kit/*": ["packages/*/src"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs"
|
|
}
|
|
}
|
|
}
|