atelier/pritty/deno.jsonc
2025-01-17 11:41:35 -05:00

25 lines
346 B
Plaintext

{
"compilerOptions": {
"checkJs": true,
"lib": [
"esnext",
"dom",
"dom.iterable",
"deno.window",
"deno.unstable"
]
},
"tasks": {
"check": "deno check src/main.ts"
},
"imports": {
"@std/toml": "jsr:@std/toml@^1.0.2"
},
"fmt": {
"semiColons": true,
"singleQuote": true,
"useTabs": true,
"lineWidth": 90
}
}