Skip to content

Commit

Permalink
🔧 Update TypeScript rules and reorganize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
toridoriv committed Oct 13, 2023
1 parent 795a252 commit 6cfa450
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"compilerOptions": {
"strictNullChecks": true,
"noImplicitThis": false
"exactOptionalPropertyTypes": true,
"noImplicitThis": true,
"strictNullChecks": true
},
"fmt": {
"exclude": [
Expand Down Expand Up @@ -31,16 +32,10 @@
"lock": "deno.lock",
"nodeModulesDir": true,
"scopes": {
"./node_modules/": {
"express-serve-static-core": "./typings/express-serve-static-core.d.ts"
},
"./app/": {
"@common": "./app/core/mod.ts",
"@deps": "./app/core/deps.ts"
},
"./tmp.ts": {
"./": "./app/"
},
"./app/core/deps.ts": {
"@common/": "./common/core/",
"ansi-colors": "npm:ansi-colors@4",
Expand All @@ -57,19 +52,22 @@
},
"./bin/core/deps.ts": {
"@common/": "./common/core/",
"denon": "https://deno.land/x/denon@2.5.0/mod.ts",
"cliffy/": "https://deno.land/x/cliffy@v1.0.0-rc.3/",
"denon": "https://deno.land/x/denon@2.5.0/mod.ts",
"prettier": "npm:prettier@3.0.3"
},
"./common/core/deps.ts": {
"std/": "https://deno.land/std@0.203.0/",
"zod": "https://deno.land/x/zod@v3.22.4/mod.ts"
},
"./scripts.config.ts": {
"@deps": "./bin/core/deps.ts"
"./node_modules/": {
"express-serve-static-core": "./typings/express-serve-static-core.d.ts"
},
"./prettier.config.mjs": {
"@deps": "./bin/core/deps.ts"
},
"./scripts.config.ts": {
"@deps": "./bin/core/deps.ts"
}
},
"tasks": {
Expand Down

0 comments on commit 6cfa450

Please sign in to comment.