chore: add svelte-check

This commit is contained in:
DecafDev 2024-07-13 21:03:55 -06:00
parent 82c1fea5df
commit 34a62c2ef7
3 changed files with 7 additions and 2 deletions

BIN
bun.lockb

Binary file not shown.

View file

@ -5,9 +5,12 @@
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"build": "bun run check && bun run compile && node esbuild.config.mjs production",
"guardgen": "ts-auto-guard",
"test": "jest --config jest.config.js"
"compile": "tsc -noEmit -skipLibCheck",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "jest --config jest.config.js",
"lint": "eslint --ext .ts,.js,.svelte ."
},
"keywords": [],
"author": "DecafDev",
@ -25,6 +28,7 @@
"esbuild-svelte": "^0.8.0",
"jest": "^29.7.0",
"obsidian": "latest",
"svelte-check": "^3.8.4",
"svelte-preprocess": "^5.1.4",
"ts-auto-guard": "^5.0.0",
"ts-jest": "^29.1.4",

View file

@ -22,5 +22,6 @@
},
"include": [
"**/*.ts",
"**/*.svelte",
]
}