mirror of
https://github.com/privacy-scaling-explorations/zk-kit.git
synced 2026-04-22 03:00:15 -04:00
26 lines
546 B
JSON
26 lines
546 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"strict": true,
|
|
"target": "ES5",
|
|
"module": "ES6",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"preserveConstEnums": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declarationDir": "types",
|
|
"typeRoots": ["node_modules/@types", "types"],
|
|
"paths": {
|
|
"@zk-kit/types": ["types/zk-kit"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs"
|
|
}
|
|
}
|
|
}
|