2022-03-30 08:42:19 -04:00
|
|
|
{
|
|
|
|
"extends": "../../../tsconfig.base.json",
|
|
|
|
"include": ["src"],
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
2023-03-06 19:57:16 +01:00
|
|
|
"module": "ES2022",
|
2022-03-30 08:42:19 -04:00
|
|
|
"outDir": "./dist",
|
2023-07-24 20:47:07 +02: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 08:42:19 -04:00
|
|
|
}
|
|
|
|
}
|