Skip to content

Commit

Permalink
fix: format issues
Browse files Browse the repository at this point in the history
  • Loading branch information
nacho-vazquez committed May 29, 2024
1 parent af02556 commit 0697ba5
Showing 1 changed file with 24 additions and 8 deletions.
32 changes: 24 additions & 8 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,34 @@
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"lib": [
"es2017",
"dom"
],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"useDefineForClassFields": true,
"baseUrl": ".",
"paths": {
"@internal/console-driver/test-util": ["packages/internal/console-driver/test-util/src/index.ts"],
"@internal/test-util": ["packages/internal/test-util/src/index.ts"],
"@ngworker/lumberjack": ["packages/ngworker/lumberjack/src/index.ts"],
"@ngworker/lumberjack/console-driver": ["packages/ngworker/lumberjack/console-driver/src/index.ts"],
"@ngworker/lumberjack/http-driver": ["packages/ngworker/lumberjack/http-driver/src/index.ts"]
"@internal/console-driver/test-util": [
"packages/internal/console-driver/test-util/src/index.ts"
],
"@internal/test-util": [
"packages/internal/test-util/src/index.ts"
],
"@ngworker/lumberjack": [
"packages/ngworker/lumberjack/src/index.ts"
],
"@ngworker/lumberjack/console-driver": [
"packages/ngworker/lumberjack/console-driver/src/index.ts"
],
"@ngworker/lumberjack/http-driver": [
"packages/ngworker/lumberjack/http-driver/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}
"exclude": [
"node_modules",
"tmp"
]
}

0 comments on commit 0697ba5

Please sign in to comment.