mirror of
https://github.com/decaf-dev/obsidian-vault-explorer.git
synced 2026-07-22 10:10:31 +00:00
chore: add svelte-check
This commit is contained in:
parent
82c1fea5df
commit
34a62c2ef7
3 changed files with 7 additions and 2 deletions
BIN
bun.lockb
BIN
bun.lockb
Binary file not shown.
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -22,5 +22,6 @@
|
|||
},
|
||||
"include": [
|
||||
"**/*.ts",
|
||||
"**/*.svelte",
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue