fix(www): transpiler failure

This commit is contained in:
Musa 2025-11-23 13:27:17 -08:00
parent 0d9147456f
commit 9c9207c08e
4 changed files with 21 additions and 2 deletions

View file

@ -3,6 +3,9 @@
"version": "0.1.0",
"private": true,
"main": "./globals.css",
"exports": {
"./globals.css": "./globals.css"
},
"files": [
"globals.css"
]

View file

@ -4,6 +4,12 @@
"private": true,
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"default": "./src/index.ts"
}
},
"scripts": {
"lint": "biome check",
"typecheck": "tsc --noEmit"