Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions eslint.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ export default exadevConfig(
".turbo",
"vendor",
"test/fixtures/generated",
// Plain JS (not TS), specifically so it never needs Node's native type-stripping to load -- see tsdown.config.js's own comment for why. Nothing here needs type-aware linting.
"tsdown.config.js",
],
},
{
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.node.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"compilerOptions": {
"allowImportingTsExtensions": true
},
"include": ["src/cli.ts", "tsdown.config.ts", "eslint.config.ts", "test/**/*.ts"],
"include": ["src/cli.ts", "eslint.config.ts", "test/**/*.ts"],
"exclude": ["test/fixtures/generated/protocol.ts"]
}
2 changes: 2 additions & 0 deletions tsdown.config.ts → tsdown.config.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"_build": {
"dependsOn": ["_vendor:build"],
"inputs": ["src/emitter.ts", "src/runtime.ts", "src/parse.ts", "tsdown.config.ts", "tsconfig.json"],
"inputs": ["src/emitter.ts", "src/runtime.ts", "src/parse.ts", "tsdown.config.js", "tsconfig.json"],
"outputs": ["dist/**"]
},
"_generate": {
Expand Down