summaryrefslogtreecommitdiff
path: root/examples/framework-multiple
diff options
context:
space:
mode:
authorGravatar Erika <3019731+Princesseuh@users.noreply.github.com> 2022-08-25 16:15:27 -0300
committerGravatar GitHub <noreply@github.com> 2022-08-25 15:15:27 -0400
commit77ce6be30c9cb8054ebf69a4943b984eed90152e (patch)
tree072b174b98172818575cba8da3557336525c3f8a /examples/framework-multiple
parentfcc36ac908429733b1d9e51caddbc7590f9eeea5 (diff)
downloadastro-77ce6be30c9cb8054ebf69a4943b984eed90152e.tar.gz
astro-77ce6be30c9cb8054ebf69a4943b984eed90152e.tar.zst
astro-77ce6be30c9cb8054ebf69a4943b984eed90152e.zip
Add template tsconfigs for users to extend from (#4439)
* Add tsconfig templates to extend from * Add changeset * Right order for assign parameters * Add tsconfigs to export map
Diffstat (limited to 'examples/framework-multiple')
-rw-r--r--examples/framework-multiple/tsconfig.json14
1 files changed, 2 insertions, 12 deletions
diff --git a/examples/framework-multiple/tsconfig.json b/examples/framework-multiple/tsconfig.json
index 8885491e4..2d48ed5fd 100644
--- a/examples/framework-multiple/tsconfig.json
+++ b/examples/framework-multiple/tsconfig.json
@@ -1,17 +1,7 @@
{
+ "extends": "astro/tsconfigs/base",
"compilerOptions": {
- // Enable top-level await, and other modern ESM features.
- "target": "ESNext",
- "module": "ESNext",
// Needed for TypeScript intellisense in the template inside Vue files
- "jsx": "preserve",
- // 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
+ "jsx": "preserve"
}
}