@@ -6,12 +6,11 @@ import type { TsConfigJson } from "type-fest";
66import { fillTemplate } from "../../formatting.js" ;
77import { getNodeLatestLtsVersion } from "../../versions/node.js" ;
88import type { BaseConfigs } from "../base/index.js" ;
9- import { mergeArrayComposer , propertiesComposer } from "../composer.js" ;
9+ import { mergeArrayComposer } from "../composer.js" ;
1010import { loadTemplates } from "../templates.js" ;
1111
1212export interface TypeScriptDotConfigs {
1313 ".config/cspell/cspell.json" : string ;
14- ".config/git/ignore" : string ;
1514 ".config/typescript/tsconfig.node.json" : string ;
1615 ".config/eslint/tsconfig.json" : string ;
1716 ".config/eslint/eslint.config.ts" : string ;
@@ -24,7 +23,6 @@ export const createTypeScriptDotConfigs = async (
2423) : Promise < TypeScriptDotConfigs > => {
2524 const templates = await loadTemplates ( "typescript" , [
2625 ".config/cspell/cspell.json" ,
27- ".config/git/ignore" ,
2826 ".config/typescript/tsconfig.node.json" ,
2927 ".config/eslint/tsconfig.json" ,
3028 ".config/eslint/eslint.config.ts" ,
@@ -39,7 +37,6 @@ export const createTypeScriptDotConfigs = async (
3937 jsonc . parse ( templates [ ".config/cspell/cspell.json" ] ) as CSpellUserSettings ,
4038 ) ,
4139 ) ,
42- ".config/git/ignore" : propertiesComposer ( baseConfig [ ".config/git/ignore" ] , templates [ ".config/git/ignore" ] ) ,
4340 ".config/typescript/tsconfig.node.json" : JSON . stringify (
4441 defaultComposer ( jsonc . parse ( templates [ ".config/typescript/tsconfig.node.json" ] ) as TsConfigJson , {
4542 extends : `@tsconfig/node${ nodeVersion } /tsconfig.json` ,
0 commit comments