ditto/deno.json
2023-05-07 14:07:19 -05:00

32 lines
No EOL
752 B
JSON

{
"$schema": "https://deno.land/x/deno@v1.32.3/cli/schemas/config-file.v1.json",
"lock": false,
"tasks": {
"dev": "deno run --allow-read --allow-env --allow-net --allow-ffi --unstable --watch src/server.ts",
"test": "deno test"
},
"imports": {
"@/": "./src/",
"react/jsx-runtime": "https://esm.sh/react@18.2.0/jsx-runtime"
},
"lint": {
"include": ["src/"],
"rules": {
"tags": ["recommended"],
"exclude": ["no-explicit-any"]
}
},
"fmt": {
"include": ["src/"],
"useTabs": false,
"lineWidth": 120,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"proseWrap": "preserve"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react"
}
}