mirror of
https://github.com/selfxyz/self.git
synced 2026-02-19 02:24:25 -05:00
* fix: circuit tests and tsconfigs * fix-ci: downgrade typescript version * fix: yarn.lock * fix: linting in common
27 lines
620 B
JSON
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"
|
|
}
|
|
]
|
|
}
|