File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 "editor.codeActionsOnSave" : {
55 "source.fixAll.eslint" : " explicit" ,
66 "source.organizeImports" : " never"
7- }
7+ },
8+ "typescript.tsdk" : " node_modules/typescript/lib"
89}
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
3- // Enable latest features
43 "target" : " ESNext" ,
54 "lib" : [" ESNext" ],
65 "module" : " ESNext" ,
76 "skipLibCheck" : true ,
87
9-
10-
11- // Bundler mode
12- "moduleResolution" : " bundler" ,
13- "allowImportingTsExtensions" : true ,
8+ "moduleResolution" : " Bundler" ,
9+ "moduleDetection" : " force" ,
10+ "erasableSyntaxOnly" : true ,
1411 "verbatimModuleSyntax" : true ,
1512 "noEmit" : true ,
1613
17- // Best practices
1814 "strict" : true ,
15+ "noUnusedLocals" : true ,
16+ "noUnusedParameters" : true ,
1917 "noFallthroughCasesInSwitch" : true ,
20-
21- // Some stricter flags (disabled by default)
22- "noUnusedLocals" : false ,
23- "noUnusedParameters" : false ,
24- "noPropertyAccessFromIndexSignature" : false ,
18+ "noUncheckedSideEffectImports" : true ,
2519
2620 "baseUrl" : " ." ,
2721 "paths" : {
You can’t perform that action at this time.
0 commit comments