diff --git a/eslint.config.js b/eslint.config.js index af30867..1e142d0 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -62,6 +62,14 @@ export default [ } }, + // Allow triple-slash reference in env.d.ts for Astro types + { + files: ['src/env.d.ts'], + rules: { + '@typescript-eslint/triple-slash-reference': 'off' + } + }, + // Ignores { ignores: ['dist', 'node_modules', 'eslint.config.js', '.astro', 'astro.config.*', 'ref/**'] } ]; diff --git a/tsconfig.json b/tsconfig.json index b7aa869..2bfcc46 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,7 +11,6 @@ }, "include": [ "src", - "env.d.ts", "astro.config.mjs", ".astro/types.d.ts" ],