diff options
Diffstat (limited to 'examples/framework-multiple/tsconfig.json')
-rw-r--r-- | examples/framework-multiple/tsconfig.json | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/framework-multiple/tsconfig.json b/examples/framework-multiple/tsconfig.json new file mode 100644 index 000000000..a19c58a62 --- /dev/null +++ b/examples/framework-multiple/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "astro/tsconfigs/strict", + "include": [".astro/types.d.ts", "**/*"], + "exclude": ["dist"], + "compilerOptions": { + // Needed for TypeScript intellisense in the template inside Vue files + "jsx": "preserve" + } +} |