blob: d67bd6461f06d318ca172727080b52ce02bd3135 [file] [edit]
{
"extends": "../../tsconfig.base.json",
"include": [
".",
],
"exclude": [
"../gen/"
],
"compilerOptions": {
"outDir": "../../out/tsc/bigtrace",
"lib": [
"dom", // Need to be explicitly mentioned now since we're overriding default included libs.
"es2022", // Need this to use Promise.allSettled, replaceAll, Error.cause, etc
],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
}
}