File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 2
2
/* Visit https://aka.ms/tsconfig.json to read more about this file */
3
3
"$schema" : " https://json.schemastore.org/tsconfig" ,
4
4
"compilerOptions" : {
5
- "module" : " commonjs" ,
6
- "target" : " ES2021" ,
7
- "lib" : [" ES2021" ],
5
+ "target" : " ESNext" ,
6
+ "lib" : [" ESNext" ],
8
7
"baseUrl" : " ." , // Base directory to resolve non-absolute module names.
9
8
"rootDir" : " src" ,
10
9
"outDir" : " out" ,
32
31
"exactOptionalPropertyTypes" : true , // Force exact optional types. (Aka. undefined needs to be added to optionals)
33
32
34
33
/* Module Resolution Options */
35
- "moduleResolution" : " node" , // Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6).
34
+ "module" : " NodeNext" ,
35
+ "moduleResolution" : " nodenext" , // Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6).
36
36
"resolveJsonModule" : true , // Allows importing modules with a .json extension.
37
37
"paths" : {
38
38
// A series of entries which re-map imports to lookup locations relative to the 'baseUrl'.
You can’t perform that action at this time.
0 commit comments