mirror of
https://github.com/semaphore-protocol/semaphore.git
synced 2026-01-10 07:08:17 -05:00
27 lines
689 B
JSON
27 lines
689 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"strict": true,
|
|
"target": "ES5",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"esModuleInterop": true,
|
|
"preserveConstEnums": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declarationDir": "types",
|
|
"typeRoots": ["node_modules/@types", "types"],
|
|
"paths": {
|
|
"@semaphore-protocol/*": ["./packages/*/src"]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs"
|
|
}
|
|
}
|
|
}
|