Files
self/circuits/tsconfig.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

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"
}
]
}