summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 04ec81b7509c5af530ed6adc247ce2d7e715e9c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
	"compilerOptions": {
		"target": "es2016",
		"declaration": true,

		"strict": false,
		//"strictNullChecks": true,
		"strictFunctionTypes": true,
		"strictBindCallApply": true,
		//"strictPropertyInitialization": true,
		"noImplicitThis": true,
		"useUnknownInCatchVariables": true,
		"alwaysStrict": true,
		"noUnusedLocals": true,
		"noUnusedParameters": true,
		//"exactOptionalPropertyTypes": true,
		"noImplicitReturns": true,
		"noFallthroughCasesInSwitch": true,
		"noUncheckedIndexedAccess": true,
		"noImplicitOverride": true,
		"noPropertyAccessFromIndexSignature": false
	}
}