Updates configration for Vercel and Typescript

This commit is contained in:
Alicia Sykes
2024-05-05 17:45:23 +01:00
parent e6eb91a33a
commit e255c358cb
3 changed files with 37 additions and 258 deletions

View File

@@ -3,7 +3,17 @@
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "node",
"lib": ["DOM", "DOM.Iterable", "ES2020"],
"allowImportingTsExtensions": true,
"plugins": [
{
"name": "@astrojs/ts-plugin"
},
],
"lib": [
"DOM",
"DOM.Iterable",
"ES2020"
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
@@ -16,6 +26,9 @@
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": "src",
"jsxImportSource": "react"
},
"include": [ "src" ]
"include": [
"src"
]
}