2022-11-24 17:03:19 +03:00
|
|
|
{
|
2022-11-25 22:10:10 +03:00
|
|
|
"extends": "@tsconfig/node18/tsconfig.json",
|
2022-11-24 17:03:19 +03:00
|
|
|
"compilerOptions": {
|
2022-11-25 22:10:10 +03:00
|
|
|
// Overriding this until we implement more complete TypeScript support.
|
|
|
|
"strict": false,
|
2023-02-21 13:52:37 +03:00
|
|
|
// Overriding this because we want to use top-level await
|
2022-11-25 22:10:10 +03:00
|
|
|
"module": "esnext",
|
|
|
|
// Enable source map for debugging
|
|
|
|
"sourceMap": true,
|
|
|
|
// The remaining settings should match node18/tsconfig.json, but I kept
|
|
|
|
// them here to be explicit.
|
|
|
|
|
2022-11-24 17:03:19 +03:00
|
|
|
// Enable default imports in TypeScript.
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"outDir": "dist",
|
2022-11-25 22:10:10 +03:00
|
|
|
"allowJs": true
|
2023-02-21 13:52:37 +03:00
|
|
|
},
|
|
|
|
"include": ["src"]
|
2022-11-24 17:03:19 +03:00
|
|
|
}
|