aboutsummaryrefslogtreecommitdiffstats
path: root/packages/service-shared/tsconfig.json
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-01-08 21:36:43 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-01-09 19:53:03 +0100
commitd07e7b834831230b53860d0919a68edc2d36193d (patch)
treea1f2a021563ddff54f33341c475fc6c6eb787388 /packages/service-shared/tsconfig.json
parentNew configurations based on review comments (WIP) (diff)
downloadsophie-d07e7b834831230b53860d0919a68edc2d36193d.tar.gz
sophie-d07e7b834831230b53860d0919a68edc2d36193d.tar.zst
sophie-d07e7b834831230b53860d0919a68edc2d36193d.zip
build: Eslint fixes for multi-module project
Signed-off-by: Kristóf Marussy <kristof@marussy.com>
Diffstat (limited to 'packages/service-shared/tsconfig.json')
-rw-r--r--packages/service-shared/tsconfig.json14
1 files changed, 8 insertions, 6 deletions
diff --git a/packages/service-shared/tsconfig.json b/packages/service-shared/tsconfig.json
index ff5a29b..79889d2 100644
--- a/packages/service-shared/tsconfig.json
+++ b/packages/service-shared/tsconfig.json
@@ -1,12 +1,14 @@
1{ 1{
2 "extends": "../../tsconfig.json", 2 "extends": "./tsconfig.build.json",
3 "compilerOptions": { 3 "compilerOptions": {
4 "composite": true, 4 "composite": false,
5 "declarationDir": "dist", 5 "emitDeclarationOnly": false,
6 "emitDeclarationOnly": true, 6 "declarationDir": null,
7 "rootDir": "src" 7 "noEmit": true,
8 "rootDir": null
8 }, 9 },
9 "include": [ 10 "include": [
10 "src/**/*.ts" 11 "src/**/*.ts",
12 "esbuild.config.js"
11 ] 13 ]
12} 14}