-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
29 lines (26 loc) · 1.21 KB
/
tsconfig.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
28
29
// Standard TS settings, do not report bugs without default settings.
// This tsconfig is parsed by the AeTF Compiler.
// ! Do not set module to non-default.
{
"extends": "./config/typefall.base.json",
"compilerOptions": {
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": false, // Test this as an alternative to default imports
"noFallthroughCasesInSwitch": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"noImplicitThis": true,
"noUnusedLocals": false, // Better to lint with TSLint than to error
"noEmitOnError": true,
"noImplicitAny": true,
"alwaysStrict": true,
"pretty": false,
"allowUnusedLabels": true,
// Development & debugging
"listEmittedFiles": true,
"traceResolution": true,
"listFiles": true,
"watch": false
}
}