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" "useLiteralKeys": "off"
}, },
"correctness": { "correctness": {
"noEmptyPattern": "off" "noEmptyPattern": "off",
"noUnusedVariables": "error",
"noUnusedImports": "error"
}, },
"performance": { "performance": {
"noAccumulatingSpread": "off" "noAccumulatingSpread": "off"

View file

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

2
pnpm-lock.yaml generated
View file

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

View file

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