Skip to content

Commit 9c857df

Browse files
committed
chore: add config
1 parent 4fc146b commit 9c857df

File tree

3 files changed

+78
-0
lines changed

3 files changed

+78
-0
lines changed

_test_import_map.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"imports": {
3+
"https://deno.land/x/get_event_listeners/": "./",
4+
"https://deno.land/std/": "https://deno.land/[email protected]/"
5+
}
6+
}

deno.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"tasks": {
3+
"test": "deno test --import-map=_test_import_map.json --doc",
4+
"build:npm": "deno run -A --no-lock _tools/build_npm.ts"
5+
},
6+
"fmt": {
7+
"exclude": ["CHANGELOG.md"]
8+
},
9+
"lint": {
10+
"exclude": ["CHANGELOG.md"]
11+
},
12+
"test": {
13+
"exclude": ["CHANGELOG.md", "npm"]
14+
},
15+
"compilerOptions": {
16+
"noImplicitReturns": true,
17+
"noImplicitOverride": true,
18+
"noUncheckedIndexedAccess": true
19+
}
20+
}

deno.lock

+52
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)