chore(repo): initialize project settings and configuration
- Add .gitignore to exclude sensitive and unnecessary files - Update LICENSE with correct copyright attribution - Add VERSION file with initial version number - Configure git-cliff for changelog generation - Add deno.jsonc with tasks, compiler options, and formatting rules - Add deno.lock to track dependencies - Add import_map.json for module resolution
This commit is contained in:
30
deno.jsonc
Normal file
30
deno.jsonc
Normal file
@@ -0,0 +1,30 @@
|
||||
{
|
||||
"tasks": {
|
||||
"start": "deno run --allow-net --allow-env --allow-import --env-file src/main.ts -- --verbose",
|
||||
"watch": "deno run --watch --allow-net --allow-env --allow-import --env-file src/main.ts -- --verbose",
|
||||
"test": "deno test --allow-net --allow-env --allow-import --coverage **/__tests__/*.test.ts",
|
||||
"compile": "deno compile --allow-net --allow-env --import-map=import_map.json --allow-import --output=app src/main.ts"
|
||||
},
|
||||
"compilerOptions": {
|
||||
"lib": [
|
||||
"dom",
|
||||
"dom.iterable",
|
||||
"esnext",
|
||||
"deno.ns"
|
||||
],
|
||||
"strict": true
|
||||
},
|
||||
"fmt": {
|
||||
"useTabs": false,
|
||||
"lineWidth": 80,
|
||||
"indentWidth": 4,
|
||||
"semiColons": true,
|
||||
"singleQuote": true,
|
||||
"proseWrap": "preserve",
|
||||
"include": [
|
||||
"src/",
|
||||
"main.ts"
|
||||
]
|
||||
},
|
||||
"importMap": "./import_map.json"
|
||||
}
|
Reference in New Issue
Block a user