aboutsummaryrefslogtreecommitdiff
path: root/deno.json
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-05-15 01:45:59 +0000
committerFuwn <[email protected]>2022-05-15 01:45:59 +0000
commit0ce99108e78f9402a1aa5cc2541420de1e3fbf69 (patch)
treeb58611c09aabf26b416512d5f605e73f1c10c8af /deno.json
downloadlaurali-0.1.0.tar.xz
laurali-0.1.0.zip
feat(0.1.0): initial release0.1.0
Diffstat (limited to 'deno.json')
-rw-r--r--deno.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/deno.json b/deno.json
new file mode 100644
index 0000000..de24001
--- /dev/null
+++ b/deno.json
@@ -0,0 +1,26 @@
+{
+ "compilerOptions": {
+ "strict": true,
+ "useUnknownInCatchVariables": true,
+ "noImplicitOverride": true
+ },
+ "fmt": {
+ "files": {
+ "exclude": [
+ ".git",
+ "cov"
+ ]
+ }
+ },
+ "lint": {
+ "files": {
+ "exclude": [
+ ".git",
+ "cov"
+ ]
+ }
+ },
+ "tasks": {
+ "test": "deno test --doc --unstable --allow-all --coverage=./cov"
+ }
+}