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.
1
2
{
2
- // See https://www.totaltypescript.com/tsconfig-cheat-sheet.
3
3
"compilerOptions" : {
4
- /* Base Options: */
4
+ // Base options.
5
5
"esModuleInterop" : true ,
6
6
"skipLibCheck" : true ,
7
7
"target" : " es2022" ,
10
10
"moduleDetection" : " force" ,
11
11
"isolatedModules" : true ,
12
12
"verbatimModuleSyntax" : true ,
13
- /* Strictness */
13
+ // Strictness.
14
14
"strict" : true ,
15
15
"noUncheckedIndexedAccess" : true ,
16
- /* If you're building for a library: */
16
+ // Building a library.
17
17
"declaration" : true ,
18
- /* If NOT transpiling with TypeScript: */
19
- "moduleResolution" : " bundler" ,
20
- "module" : " esnext" ,
18
+ // Transpiling with a bundler.
19
+ "module" : " preserve" ,
21
20
"noEmit" : true ,
22
- /* If your code doesn't run in the DOM: */
21
+ // No DOM.
23
22
"lib" : [" es2022" ]
24
23
}
25
24
}
You can’t perform that action at this time.
0 commit comments