File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed
Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 1+ // See https://www.totaltypescript.com/tsconfig-cheat-sheet.
12{
2- // See https://www.totaltypescript.com/tsconfig-cheat-sheet.
33 "compilerOptions" : {
4- /* Base Options: */
4+ // Base options.
55 "esModuleInterop" : true ,
66 "skipLibCheck" : true ,
77 "target" : " es2022" ,
1010 "moduleDetection" : " force" ,
1111 "isolatedModules" : true ,
1212 "verbatimModuleSyntax" : true ,
13- /* Strictness */
13+ // Strictness.
1414 "strict" : true ,
1515 "noUncheckedIndexedAccess" : true ,
16- /* If you're building for a library: */
16+ // Building a library.
1717 "declaration" : true ,
18- /* If NOT transpiling with TypeScript: */
19- "moduleResolution" : " bundler" ,
20- "module" : " esnext" ,
18+ // Transpiling with a bundler.
19+ "module" : " preserve" ,
2120 "noEmit" : true ,
22- /* If your code doesn't run in the DOM: */
21+ // No DOM.
2322 "lib" : [" es2022" ]
2423 }
2524}
You can’t perform that action at this time.
0 commit comments