diff options
Diffstat (limited to 'examples/hackernews')
-rw-r--r-- | examples/hackernews/astro.config.mjs | 1 | ||||
-rw-r--r-- | examples/hackernews/tsconfig.json | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/examples/hackernews/astro.config.mjs b/examples/hackernews/astro.config.mjs index 68ba7fac5..bf6f1a022 100644 --- a/examples/hackernews/astro.config.mjs +++ b/examples/hackernews/astro.config.mjs @@ -1,3 +1,4 @@ +// @ts-check import { defineConfig } from 'astro/config'; import node from '@astrojs/node'; diff --git a/examples/hackernews/tsconfig.json b/examples/hackernews/tsconfig.json index f11a46c8e..8bf91d3bb 100644 --- a/examples/hackernews/tsconfig.json +++ b/examples/hackernews/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "astro/tsconfigs/base", + "extends": "astro/tsconfigs/strict", "include": [".astro/types.d.ts", "**/*"], "exclude": ["dist"] } |