mirror of
https://github.com/altcha-org/altcha-lib.git
synced 2026-01-25 04:18:21 +00:00
28 lines
596 B
JSON
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'"
|
|
}
|
|
}
|