This commit is contained in:
Luiz H. R. Silva 2024-07-11 09:01:49 -03:00
parent 87acc3b562
commit 6cbf5172b8
4 changed files with 7 additions and 5 deletions

View file

@ -22,7 +22,9 @@
"useLiteralKeys": "off"
},
"correctness": {
"noEmptyPattern": "off"
"noEmptyPattern": "off",
"noUnusedVariables": "error",
"noUnusedImports": "error"
},
"performance": {
"noAccumulatingSpread": "off"

View file

@ -1,6 +1,6 @@
{
"name": "p-comuns",
"version": "0.36.0",
"version": "0.38.0",
"description": "",
"main": "dist/index.js",
"scripts": {
@ -14,7 +14,7 @@
},
"license": "ISC",
"dependencies": {
"zod": "latest"
"zod": "3.23.8"
},
"devDependencies": {
"@biomejs/biome": "latest",

2
pnpm-lock.yaml generated
View file

@ -12,7 +12,7 @@ importers:
specifier: ^5
version: 5.5.2
zod:
specifier: latest
specifier: 3.23.8
version: 3.23.8
devDependencies:
'@biomejs/biome':

View file

@ -3,7 +3,7 @@
"outDir": "dist",
"esModuleInterop": true,
"noImplicitAny": true,
"target": "ESNext",
"target": "ES2020",
"jsx": "react",
"declaration": true,
"declarationDir": "dist",