File tree 2 files changed +19
-3
lines changed
2 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ async function resolvePrettier(
103
103
return import ( path ) . then ( ( v ) => {
104
104
if ( v !== undefined ) {
105
105
return {
106
- module : v . default ,
106
+ module : v ,
107
107
filePath : path ,
108
108
} ;
109
109
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"compilerOptions" : {
3
3
"incremental" : true ,
4
+ "target" : " es2018" ,
5
+ "module" : " commonjs" ,
6
+ "lib" : [],
7
+ "strict" : true ,
8
+ "noImplicitAny" : true ,
9
+ "strictNullChecks" : true ,
10
+ "strictFunctionTypes" : true ,
11
+ "strictBindCallApply" : true ,
12
+ "strictPropertyInitialization" : true ,
13
+ "noImplicitThis" : true ,
14
+ "alwaysStrict" : true ,
15
+ "noUnusedLocals" : true ,
16
+ "noUnusedParameters" : true ,
17
+ "noImplicitReturns" : true ,
18
+ "esModuleInterop" : true ,
19
+ "skipLibCheck" : true ,
20
+ "forceConsistentCasingInFileNames" : true ,
4
21
"outDir" : " dist" ,
5
22
"rootDir" : " src"
6
- },
7
- "extends" : " @tsconfig/node18/tsconfig.json"
23
+ }
8
24
}
You can’t perform that action at this time.
0 commit comments