From 55370f2e98a55cf1d1a66ce6ec45ec0514da82fa Mon Sep 17 00:00:00 2001 From: Errilaz Date: Fri, 1 May 2026 16:22:41 +0200 Subject: [PATCH] chore: update templates --- templates/package/package.json | 5 ++++- templates/tools-oxc/oxlint.config.ts | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/templates/package/package.json b/templates/package/package.json index 1b2cc82..da3025c 100644 --- a/templates/package/package.json +++ b/templates/package/package.json @@ -1,5 +1,8 @@ { "scripts": { "test": "bun test --pass-with-no-tests" - } + }, + "files": [ + "src" + ] } \ No newline at end of file diff --git a/templates/tools-oxc/oxlint.config.ts b/templates/tools-oxc/oxlint.config.ts index 6c29305..36448d7 100644 --- a/templates/tools-oxc/oxlint.config.ts +++ b/templates/tools-oxc/oxlint.config.ts @@ -40,6 +40,7 @@ export default defineConfig({ "default-case": "off", "prefer-for-of": "off", "switch-case-braces": "off", + "require-module-specifiers": "off", }, ignorePatterns: ["**/*.gen.ts"], })