mirror of
https://github.com/privacy-scaling-explorations/p0tion.git
synced 2026-04-21 03:00:07 -04:00
33 lines
775 B
JSON
33 lines
775 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"strict": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "nodenext",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"preserveConstEnums": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declarationDir": "types",
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"types"
|
|
],
|
|
"paths": {
|
|
"@p0tion/*": [
|
|
"packages/*/src"
|
|
]
|
|
}
|
|
},
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "nodenext"
|
|
}
|
|
}
|
|
}
|