From a28662b9bd69cbd742457c8d91b7f3e21872b91c Mon Sep 17 00:00:00 2001 From: Errilaz Date: Sat, 2 May 2026 00:18:02 +0200 Subject: [PATCH] config updates --- templates/package/tsconfig.json | 2 +- templates/tools-oxc/oxlint.config.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/package/tsconfig.json b/templates/package/tsconfig.json index 29ac008..a087da2 100644 --- a/templates/package/tsconfig.json +++ b/templates/package/tsconfig.json @@ -8,6 +8,6 @@ "skipDefaultLibCheck": true, "skipLibCheck": true, "strict": true, - "outDir": "lib" + "noEmit": true } } diff --git a/templates/tools-oxc/oxlint.config.ts b/templates/tools-oxc/oxlint.config.ts index 36448d7..1936647 100644 --- a/templates/tools-oxc/oxlint.config.ts +++ b/templates/tools-oxc/oxlint.config.ts @@ -41,6 +41,7 @@ export default defineConfig({ "prefer-for-of": "off", "switch-case-braces": "off", "require-module-specifiers": "off", + "no-namespace": "off", }, ignorePatterns: ["**/*.gen.ts"], })