Example fixes
Lint / lint (push) Successful in 12s

This commit is contained in:
Julien Valverdé
2025-10-01 22:55:16 +02:00
parent a5df6d04c0
commit 11dfcdaf85
8 changed files with 37 additions and 32 deletions
+10 -4
View File
@@ -17,10 +17,16 @@
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
"./*": [
{
"types": "./dist/*/index.d.ts",
"default": "./dist/*/index.js"
},
{
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
]
},
"scripts": {
"build": "tsc",