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:
@@ -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": {
|
||||
|
@@ -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"
|
||||
|
Reference in New Issue
Block a user