7
7
] ,
8
8
"sourceMap" : true ,
9
9
"rootDir" : "src" ,
10
- "strict" : true /* enable all strict type-checking options */
11
- /* Additional Checks */
12
- // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
13
- // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
14
- // "noUnusedParameters": true, /* Report errors on unused parameters. */
10
+ "strict" : true , /* enable all strict type-checking options */
11
+ "skipLibCheck" : true , /* Skip type checking of declaration files. */
12
+ "forceConsistentCasingInFileNames" : true , /* Ensure that casing is correct in imports. */
13
+ "noImplicitReturns" : true , /* Report error when not all code paths in function return a value. */
14
+ "noFallthroughCasesInSwitch" : true , /* Report errors for fallthrough cases in switch statement. */
15
+ "noUnusedParameters" : true , /* Report errors on unused parameters. */
16
+ "alwaysStrict" : true , /* Parse in strict mode and emit "use strict" for each source file. */
17
+ "noImplicitAny" : true , /* Raise error on expressions and declarations with an implied 'any' type. */
18
+ "noImplicitThis" : true , /* Raise error on 'this' expressions with an implied 'any' type. */
19
+ "noUnusedLocals" : true , /* Report errors on unused locals. */
20
+ "noImplicitOverride" : true , /* Ensure overriding members in derived classes are marked with an override modifier. */
15
21
} ,
16
22
"exclude" : [
17
23
"frontend/**/*" , // Exclude the inner project
18
- "shared/**/*" // Exclude the shared project
24
+ "shared/**/*" , // Exclude the shared project
25
+ "node_modules"
19
26
]
20
27
}
0 commit comments