1
mirror of https://github.com/jakejarvis/rdapper.git synced 2025-10-18 20:14:27 -04:00

Update biome configuration and package scripts. Removed unused ignore file option in biome.json and added file includes. Modified build script in package.json to use tsc directly and added a lint script for biome checks.

This commit is contained in:
2025-09-24 14:32:49 -04:00
parent 33a648460b
commit 38cf9c5eaa
2 changed files with 5 additions and 4 deletions

View File

@@ -2,10 +2,10 @@
"$schema": "https://biomejs.dev/schemas/2.2.4/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
"clientKind": "git"
},
"files": {
"includes": ["**", "!**/dist"],
"ignoreUnknown": false
},
"formatter": {

View File

@@ -17,8 +17,9 @@
"dist"
],
"scripts": {
"build": "tsc --build",
"test": "pnpm build && node --test dist/**/*.test.js"
"build": "tsc",
"test": "tsc && node --test dist/**/*.test.js",
"lint": "biome check --write"
},
"engines": {
"node": ">=18.17"