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"], })