mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 04:08:01 -05:00
* feat: add winston logger in e2e tests * fix: rename appendTestName function to prefixWithTestName * fix: change some log level
24 lines
531 B
JSON
24 lines
531 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"types": ["node", "jest"],
|
|
"removeComments": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"target": "es2021",
|
|
"baseUrl": "./",
|
|
"outDir": "./dist",
|
|
"moduleResolution": "node",
|
|
"isolatedModules": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strictPropertyInitialization": false,
|
|
},
|
|
"references": [
|
|
{
|
|
"path": "../sdk"
|
|
}
|
|
],
|
|
"include": ["**/*.ts"],
|
|
"exclude": ["node_modules", "dist"],
|
|
}
|