astro/packages/integrations/deno/tsconfig.json

13 lines
353 B
JSON
Raw Normal View History

{
"extends": "../../../tsconfig.base.json",
"include": ["src"],
"compilerOptions": {
"allowJs": true,
"module": "ES2022",
"outDir": "./dist",
2023-07-24 18:47:07 +00:00
"target": "ES2022",
// TODO: Due to the shim for Deno imports in `server.ts`, we can't use moduleResolution: 'bundler' or the types get very weird.
"moduleResolution": "Node"
}
}