obsidian-sample-plugin-deno/deno.json

19 lines
359 B
JSON

{
"tasks": {
"dev": "obsideno build --watch",
"build": "obsideno build --production",
"install": "obsideno install",
"uninstall": "obsideno uninstall",
"bump": "obsideno bump"
},
"compilerOptions": {
"noImplicitAny": true,
"strictNullChecks": true,
"lib": [
"DOM",
"ES5",
"ES6",
"ES7"
]
}
}