File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
packages/plugin-typescript/src/postinstall Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,4 @@ import { generateCurrentTsConfig } from './utils.js';
33// eslint-disable-next-line unicorn/prefer-top-level-await
44( async ( ) => {
55 await generateCurrentTsConfig ( ) ;
6- console . log ( 'Generated current TS config' ) ;
76} ) ( ) ;
Original file line number Diff line number Diff line change 33// get a list of TS version, maybe from npm and somehow filter only versions
44import { rm , writeFile } from 'node:fs/promises' ;
55// eslint-disable-next-line unicorn/import-style
6- import { dirname , join } from 'node:path' ;
6+ import { join } from 'node:path' ;
77import type { CompilerOptions } from 'typescript' ;
88import {
99 ensureDirectoryExists ,
@@ -35,9 +35,6 @@ export async function generateDefaultTsConfig(version: SemVerString) {
3535 `export default config;` ,
3636 ] . join ( '\n' ) ,
3737 ) ;
38- console . log (
39- `Generated default TS config for version ${ version } under ${ normalizedTsConfigFolder } ` ,
40- ) ;
4138}
4239
4340export async function generateRawTsConfigFile ( version : SemVerString ) {
You can’t perform that action at this time.
0 commit comments