astro/packages/astro/tsconfig.json
Matthew Phillips 21869a614a
Move client types into Astro (#3851)
* Move client types into Astro

* Adds a changeset

* Fix path to local client

* Reference vite/client in our HMR types

* Add back in the expect-error

* Update types comment
2022-07-11 08:12:18 -04:00

12 lines
265 B
JSON

{
"extends": "../../tsconfig.base.json",
"include": ["src", "index.d.ts"],
"compilerOptions": {
"allowJs": true,
"declarationDir": "./dist/types",
"module": "ES2020",
"outDir": "./dist",
"target": "ES2020",
"types": ["./client"]
}
}