2022-03-30 12:42:19 +00:00
|
|
|
{
|
|
|
|
"extends": "../../../tsconfig.base.json",
|
|
|
|
"include": ["src"],
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
2023-03-06 18:57:16 +00:00
|
|
|
"module": "ES2022",
|
2022-03-30 12:42:19 +00:00
|
|
|
"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"
|
2022-03-30 12:42:19 +00:00
|
|
|
}
|
|
|
|
}
|