summaryrefslogtreecommitdiff
path: root/examples/framework-solid
diff options
context:
space:
mode:
Diffstat (limited to 'examples/framework-solid')
-rw-r--r--examples/framework-solid/tsconfig.json12
1 files changed, 1 insertions, 11 deletions
diff --git a/examples/framework-solid/tsconfig.json b/examples/framework-solid/tsconfig.json
index 807b3fac7..cb2c53c66 100644
--- a/examples/framework-solid/tsconfig.json
+++ b/examples/framework-solid/tsconfig.json
@@ -1,18 +1,8 @@
{
+ "extends": "astro/tsconfigs/base",
"compilerOptions": {
// Solid specific settings
"jsx": "preserve",
"jsxImportSource": "solid-js",
- // Enable top-level await, and other modern ESM features.
- "target": "ESNext",
- "module": "ESNext",
- // Enable node-style module resolution, for things like npm package imports.
- "moduleResolution": "node",
- // Enable JSON imports.
- "resolveJsonModule": true,
- // Enable stricter transpilation for better output.
- "isolatedModules": true,
- // Astro will directly run your TypeScript code, no transpilation needed.
- "noEmit": true
}
}