This commit is contained in:
Zef Hemel
2023-08-22 10:36:42 +02:00
parent 211e9f892c
commit d289d96f68
4 changed files with 26 additions and 40 deletions

View File

@@ -1,7 +1,19 @@
{
"importMap": "import_map.json",
"tasks": {
"build": "silverbullet plug:compile --importmap import_map.json hello.plug.yaml",
"watch": "silverbullet plug:compile -w --importmap import_map.json hello.plug.yaml"
"build": "silverbullet plug:compile hello.plug.yaml",
"watch": "silverbullet plug:compile hello.plug.yaml -w"
},
"lint": {
"rules": {
"exclude": ["no-explicit-any"]
}
},
"fmt": {
"exclude": [
"*.md",
"**/*.md",
"*.plug.js"
]
}
}