chore: added raw tsc builds too

This commit is contained in:
2026-04-27 00:09:57 +03:30
parent e131f524b7
commit 39d3fc4748
2 changed files with 3 additions and 2 deletions

View File

@@ -19,7 +19,8 @@
], ],
"scripts": { "scripts": {
"dev": "vite build --watch", "dev": "vite build --watch",
"build": "tsc && vite build", "build": "tsc --emitDeclarationOnly && vite build",
"build:raw": "tsc",
"test": "vitest run", "test": "vitest run",
"test:watch": "vitest", "test:watch": "vitest",
"lint": "eslint . --ext .ts", "lint": "eslint . --ext .ts",

View File

@@ -2,9 +2,9 @@
"compilerOptions": { "compilerOptions": {
"target": "ES2020", "target": "ES2020",
"module": "ESNext", "module": "ESNext",
"moduleResolution": "bundler",
"strict": true, "strict": true,
"declaration": true, "declaration": true,
"emitDeclarationOnly": true,
"outDir": "./dist", "outDir": "./dist",
"rootDir": "./src", "rootDir": "./src",
"esModuleInterop": true, "esModuleInterop": true,