21efd7ac82
* move simple script to `examples/simple` * rm vscode settings.json * example npm * wip * refactoring * Update mkExecutable * rm custom formatter from vscode extensions * Add .gitignore * Update flake.nix * bundled/executable wip * Update flake * importMap * bundled wrapper * somerefactoring * no more overlay(default) * add todo * Update README.md
21 lines
343 B
Plaintext
21 lines
343 B
Plaintext
{
|
|
"importMap": "./import_map.json",
|
|
"tasks": {
|
|
"run": "deno run -A ./mod.ts",
|
|
"compile": "deno compile -A ./mod.ts"
|
|
},
|
|
"fmt": {
|
|
"options": {
|
|
"lineWidth": 120,
|
|
"indentWidth": 2,
|
|
"singleQuote": false,
|
|
"useTabs": false
|
|
},
|
|
"files": {
|
|
"exclude": [
|
|
"./lock.json"
|
|
]
|
|
}
|
|
}
|
|
}
|