mirror of
https://github.com/yamadashy/repomix.git
synced 2026-05-30 11:18:53 +02:00
4c7d8fbc99
- Update target from es2016 to es2022 (Node.js 20+ fully supports ES2022) - Add moduleDetection: "force" to treat all files as modules - Add verbatimModuleSyntax: true (TypeScript 5.0+ recommended setting) - Remove esModuleInterop (replaced by verbatimModuleSyntax) - Remove noImplicitAny (redundant, included in strict) - Remove compileOnSave (unused, VS Code ignores this option) - Remove redundant declaration: true from tsconfig.build.json - Fix repomix.config.cts to use CommonJS syntax (module.exports)
11 lines
196 B
JSON
11 lines
196 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"sourceMap": false,
|
|
"declarationMap": false,
|
|
"removeComments": true
|
|
},
|
|
"include": ["./src/**/*"]
|
|
}
|