File tree 2 files changed +3
-19
lines changed
2 files changed +3
-19
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 ,
106
+ module : v . default ,
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 ,
21
4
"outDir" : " dist" ,
22
5
"rootDir" : " src"
23
- }
6
+ },
7
+ "extends" : " @tsconfig/node18/tsconfig.json"
24
8
}
You can’t perform that action at this time.
0 commit comments