60 lines
1.8 KiB
JSON
60 lines
1.8 KiB
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"include": ["src", "types", "config.yaml"],
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"module": "CommonJS",
|
|
"target": "esnext",
|
|
"lib": ["esnext"],
|
|
"importHelpers": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"emitDecoratorMetadata": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"experimentalDecorators": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"composite": true,
|
|
"paths": {
|
|
"@redeye/brute-ratel-parser": ["../../parsers/brute-ratel-parser/src/index.ts"],
|
|
"@redeye/brute-ratel-parser/*": ["../../parsers/brute-ratel-parser/src/*"],
|
|
"@redeye/cobalt-strike-parser": ["../../parsers/cobalt-strike-parser/src/index.ts"],
|
|
"@redeye/cobalt-strike-parser/*": ["../../parsers/cobalt-strike-parser/src/*"],
|
|
"@redeye/migrations": ["../../packages/migrations/src/index.ts"],
|
|
"@redeye/migrations/*": ["../../packages/migrations/src/*"],
|
|
"@redeye/models": ["../../packages/models/src/index.ts"],
|
|
"@redeye/models/*": ["../../packages/models/src/*"],
|
|
"@redeye/parser-core": ["../../parsers/parser-core/src/index.ts"],
|
|
"@redeye/parser-core/*": ["../../parsers/parser-core/src/*"],
|
|
"@redeye/sliver-parser": ["../../parsers/sliver-parser/src/index.ts"],
|
|
"@redeye/sliver-parser/*": ["../../parsers/sliver-parser/src/*"]
|
|
}
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../../packages/migrations"
|
|
},
|
|
{
|
|
"path": "../../packages/models"
|
|
},
|
|
{
|
|
"path": "../../parsers/brute-ratel-parser"
|
|
},
|
|
{
|
|
"path": "../../parsers/cobalt-strike-parser"
|
|
},
|
|
{
|
|
"path": "../../parsers/parser-core"
|
|
},
|
|
{
|
|
"path": "../../parsers/sliver-parser"
|
|
}
|
|
]
|
|
}
|