feat: add core registry schemas

This commit is contained in:
chungyeong
2026-05-09 23:56:10 +09:00
parent 44103839af
commit 4a7fc94f5c
18 changed files with 1267 additions and 12 deletions

View File

@@ -7,7 +7,7 @@
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"build": "tsup src/index.ts --format esm,cjs --clean && tsc -p tsconfig.build.json",
"typecheck": "tsc -b --noEmit",
"test": "vitest run"
},

View File

@@ -0,0 +1,9 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"composite": false,
"emitDeclarationOnly": true,
"noEmit": false
},
"exclude": ["src/**/*.test.ts"]
}