2023-01-10 02:15:35 -08:00
|
|
|
{
|
2023-06-09 05:10:28 -07:00
|
|
|
"extends": "../../../tsconfig.base.json",
|
2023-01-10 02:15:35 -08:00
|
|
|
"compilerOptions": {
|
|
|
|
"declaration": true,
|
2023-01-31 08:09:31 -08:00
|
|
|
"composite": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"incremental": true,
|
2023-01-10 02:15:35 -08:00
|
|
|
"target": "es2020",
|
|
|
|
"module": "CommonJS",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"outDir": "lib",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"strict": true,
|
|
|
|
"noErrorTruncation": true,
|
|
|
|
"sourceMap": true,
|
2023-01-31 08:09:31 -08:00
|
|
|
"lib": ["es2021"],
|
|
|
|
"rootDir": "src/"
|
2023-01-10 02:15:35 -08:00
|
|
|
},
|
|
|
|
"include": ["src/**/*.ts"]
|
|
|
|
}
|