mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-02 04:56:07 +00:00

* feat: ctx types, delete threads cache, cache.channels.threads, changes to collectors, fix rest types * fix: use apithreadchannel instead * feat: revert threads relationship, fix collectors * fix: cache thread when creating * fix: unused * feat: entitlement trasnformer * fix: non-null assertion * fix: circular? * fix: collector onStop reason type * fix: types * feat: onPass method * fix: undefined value
41 lines
836 B
JSON
41 lines
836 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"target": "ESNext",
|
|
"lib": [
|
|
"ESNext",
|
|
"WebWorker"
|
|
],
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"sourceMap": false,
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"preserveConstEnums": true,
|
|
/* Type Checking */
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"skipLibCheck": true,
|
|
"noErrorTruncation": true,
|
|
"outDir": "./lib",
|
|
"stripInternal": true,
|
|
},
|
|
"exclude": [
|
|
"**/lib",
|
|
"**/__test__",
|
|
"**/node_modules",
|
|
"**/.*/"
|
|
],
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|