12 lines
353 B
JSON
12 lines
353 B
JSON
{
|
|
"extends": "../../../tsconfig.base.json",
|
|
"include": ["src"],
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"module": "ES2022",
|
|
"outDir": "./dist",
|
|
"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"
|
|
}
|
|
}
|