Files
self/circuits/tsconfig.spec.json
Nesopie f4f5903b40 fix: circuit tests and tsconfigs (#621)
* fix: circuit tests and tsconfigs

* fix-ci: downgrade typescript version

* fix: yarn.lock

* fix: linting in common
2025-06-13 14:16:23 +02:00

27 lines
620 B
JSON

{
"compilerOptions": {
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"target": "ES2020",
"moduleResolution": "NodeNext",
"module": "NodeNext",
"allowJs": true,
"checkJs": false,
"outDir": "./dist",
"baseUrl": ".",
"paths": {
"@selfxyz/common/utils/*": ["../common/src/utils/*"],
"@selfxyz/common/constants/*": ["../common/src/constants/*"],
"@selfxyz/common": ["../common/index.ts"]
}
},
"include": ["tests/**/*", "src/**/*"],
"exclude": ["node_modules"],
"references": [
{
"path": "../common"
}
]
}