blob: f87464dd2303ebfabe4f9063c3ab2b8201356faf [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.
"es2021", // Need this to use Promise.allSettled, replaceAll, etc
],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
}
}