Skip to content

Commit

Permalink
[tsconfig.json] Simplify and reorganize.
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarron committed Sep 1, 2023
1 parent 33a1af0 commit dd40e98
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,22 @@
"target": "es2021",
"module": "es2020",
"moduleResolution": "bundler",
"allowJs": true,
"alwaysStrict": true,
"declaration": true,
"declarationDir": "./dist/tsc/typesies",
"declarationMap": true,
"noEmit": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"sourceMap": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"rootDir": "./",
"outDir": "./dist/tsc",
"types": [
"web-bluetooth",
"dom-speech-recognition"
]
],
// Stricter defaults.
"allowJs": true,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"strictNullChecks": true
},
"include": [
"script",
Expand Down

0 comments on commit dd40e98

Please sign in to comment.