blowater/deno.json
2024-05-24 16:54:27 +07:00

30 lines
743 B
JSON

{
"tasks": {
"hook": "deno run --allow-read --allow-run --allow-write https://deno.land/x/deno_hooks@0.1.2/mod.ts"
},
"compilerOptions": {
"checkJs": false,
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment"
},
"lint": {
"rules": {
"tags": [
"recommended"
],
"exclude": [
"prefer-const",
"no-unused-vars",
"no-inferrable-types",
"require-await"
]
}
},
"fmt": {
"exclude": ["UI/vendor/", "vendor", "*cov_profile*", "*tauri-app", "app/UI/assets/"],
"indentWidth": 4,
"lineWidth": 110
}
}