Files
altcha-lib/deno.jsonc
Daniel Regeci 49b04f8ac5 fix: deno 2.x
2025-06-07 08:22:30 +04:00

28 lines
596 B
JSON

{
"compilerOptions": {
// Use Deno and DOM libraries
"lib": ["deno.ns", "dom", "dom.iterable"],
// Deno uses ESNext-like behavior by default; no need for target/module
"strict": true
},
"lint": {
"rules": {
"tags": ["recommended"]
}
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"singleQuote": true,
"semiColons": true
},
"exclude": ["node_modules"],
"importMap": "./import_map.json",
"tasks": {
"test": "deno test --allow-all",
"build": "echo 'Build step not needed for Deno unless bundling'"
}
}