-
Notifications
You must be signed in to change notification settings - Fork 43
/
tsconfig.deno.json
27 lines (27 loc) · 1.07 KB
/
tsconfig.deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
// === THIS IS THE DEFAULT DENO CONFIGURATION : https://deno.land/manual/getting_started/typescript
"compilerOptions": {
"allowJs": true, // This almost never needs to be changed
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"checkJs": false, // If true causes TypeScript to type check JavaScript
"keyofStringsOnly": false,
// "lib": [ "deno.window" ], // The default for this varies based on other settings in Deno. If it is supplied, it overrides the default. See below for more information.
"noFallthroughCasesInSwitch": false,
"noImplicitAny": true,
"noImplicitReturns": false,
"noImplicitThis": true,
"noStrictGenericChecks": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noUncheckedIndexedAccess": false,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"strictNullChecks": true,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": false,
"useUnknownInCatchVariables": false,
}
}