build(tsconfig): Updates config, adds build:watch script

- Build files now include sourcemaps and declarations
- No longer compiles non-ts files
- package.json includes build:watch script

Signed-off-by: Alix von Schirp <github@avonschirp.bootmedia.de>
This commit is contained in:
2025-04-15 10:55:19 +02:00
parent d520d52da8
commit e5a3e04e0c
2 changed files with 5 additions and 2 deletions

View File

@@ -50,6 +50,7 @@
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"check": "pnpm lint && pnpm typecheck",
"docs:generate": "typedoc",
"format:check": "prettier --check .",
@@ -68,4 +69,4 @@
"*.{js,ts,jsx,tsx,json,css,md}": "prettier --write"
},
"type": "module"
}
}