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
22 lines
422 B
JSON
22 lines
422 B
JSON
{
|
|
"compilerOptions": {
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "ES2020",
|
|
"moduleResolution": "NodeNext",
|
|
"module": "NodeNext",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"outDir": "./dist",
|
|
"baseUrl": "."
|
|
},
|
|
"include": ["tests/**/*", "src/**/*"],
|
|
"exclude": ["node_modules"],
|
|
"references": [
|
|
{
|
|
"path": "../common"
|
|
}
|
|
]
|
|
}
|