blowater/deno.json

27 lines
593 B
JSON
Raw Normal View History

2023-06-30 14:05:57 +00:00
{
"compilerOptions": {
"checkJs": false,
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment"
2023-06-30 14:05:57 +00:00
},
"lint": {
"rules": {
"tags": [
"recommended"
],
"exclude": [
"prefer-const",
"no-unused-vars",
"no-inferrable-types",
"require-await"
]
}
},
"fmt": {
"exclude": ["UI/vendor/", "vendor", "*cov_profile*", "*tauri-app"],
"indentWidth": 4,
"lineWidth": 110
2023-06-30 14:05:57 +00:00
}
}