Files
self/circuits/tsconfig.json
Nesopie cd897752a6 Feat/new common (#1799)
* feat: common refactor (WIP)

* finish the rest of new-common and use new-common in circuits + contracts tests

* fix: prettier

* fix: yarn.lock

* fix: formatting

* fix: use prod urls for websocket

* fix: websocket url

* fix: remove the ||el flag
2026-03-03 11:17:56 +05:30

28 lines
641 B
JSON

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