mirror of
https://github.com/selfxyz/self.git
synced 2026-04-27 03:01:15 -04:00
* 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
28 lines
641 B
JSON
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"
|
|
}
|
|
]
|
|
}
|