fix yarn behaviour

This commit is contained in:
turnoffthiscomputer
2024-12-14 21:00:29 +01:00
parent 1e0ec4a053
commit 05ef25981f
5 changed files with 1140 additions and 421 deletions

Binary file not shown.

1
circuits/.yarnrc.yml Normal file
View File

@@ -0,0 +1 @@
nodeLinker: node-modules

View File

@@ -42,10 +42,11 @@
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/chai": "4.3.11",
"@types/circomlibjs": "^0.1.6",
"@types/mocha": "^10.0.6",
"chai": "^4.3.8",
"@types/mocha": "^10.0.10",
"@yarnpkg/sdks": "^3.2.0",
"chai": "4.3.8",
"mocha": "^10.3.0",
"prettier": "^3.3.3",
"ts-mocha": "^10.0.0",

View File

@@ -4,6 +4,16 @@
"esModuleInterop": true,
"target": "ES2020",
"moduleResolution": "node",
"module": "CommonJS"
}
}
"module": "CommonJS",
"allowJs": true,
"checkJs": false,
"outDir": "./dist"
},
"include": [
"tests/**/*",
"src/**/*"
],
"exclude": [
"node_modules"
]
}

File diff suppressed because it is too large Load Diff