diff --git a/libs/cache/tsconfig.json b/libs/cache/tsconfig.json index 9af0434..4b5574a 100644 --- a/libs/cache/tsconfig.json +++ b/libs/cache/tsconfig.json @@ -3,14 +3,26 @@ "compilerOptions": { "outDir": "./dist", "rootDir": "./src", - "declaration": true + "declaration": true, + "declarationMap": true, + "sourceMap": false }, "include": [ "src/**/*" ], - "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"], + "exclude": [ + "dist", + "node_modules", + "**/*.test.ts", + "**/*.spec.ts" + ], "references": [ + { "path": "../types" }, + { "path": "../config" }, { "path": "../logger" }, - { "path": "../config" } + { "path": "../utils" }, + { "path": "../postgres-client" }, + { "path": "../mongodb-client" }, + { "path": "../questdb-client" } ] } diff --git a/libs/config/tsconfig.json b/libs/config/tsconfig.json index 2367e22..664aec3 100644 --- a/libs/config/tsconfig.json +++ b/libs/config/tsconfig.json @@ -15,5 +15,8 @@ "node_modules", "**/*.test.ts", "**/*.spec.ts" + ], + "references": [ + { "path": "../types" } ] } diff --git a/libs/data-frame/tsconfig.json b/libs/data-frame/tsconfig.json index d041549..e8294e5 100644 --- a/libs/data-frame/tsconfig.json +++ b/libs/data-frame/tsconfig.json @@ -3,14 +3,30 @@ "compilerOptions": { "outDir": "./dist", "rootDir": "./src", - "declaration": true + "declaration": true, + "declarationMap": true, + "sourceMap": false }, "include": [ "src/**/*" ], - "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"], + "exclude": [ + "dist", + "node_modules", + "**/*.test.ts", + "**/*.spec.ts" + ], "references": [ + { "path": "../types" }, + { "path": "../config" }, { "path": "../logger" }, - { "path": "../types" } + { "path": "../utils" }, + { "path": "../postgres-client" }, + { "path": "../mongodb-client" }, + { "path": "../questdb-client" }, + { "path": "../cache" }, + { "path": "../http" }, + { "path": "../event-bus" }, + { "path": "../shutdown" } ] } diff --git a/libs/event-bus/tsconfig.json b/libs/event-bus/tsconfig.json index d041549..3268222 100644 --- a/libs/event-bus/tsconfig.json +++ b/libs/event-bus/tsconfig.json @@ -3,14 +3,28 @@ "compilerOptions": { "outDir": "./dist", "rootDir": "./src", - "declaration": true + "declaration": true, + "declarationMap": true, + "sourceMap": false }, "include": [ "src/**/*" ], - "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"], + "exclude": [ + "dist", + "node_modules", + "**/*.test.ts", + "**/*.spec.ts" + ], "references": [ + { "path": "../types" }, + { "path": "../config" }, { "path": "../logger" }, - { "path": "../types" } + { "path": "../utils" }, + { "path": "../postgres-client" }, + { "path": "../mongodb-client" }, + { "path": "../questdb-client" }, + { "path": "../cache" }, + { "path": "../http" } ] } diff --git a/libs/http/tsconfig.json b/libs/http/tsconfig.json index b9b925a..f6794ce 100644 --- a/libs/http/tsconfig.json +++ b/libs/http/tsconfig.json @@ -3,7 +3,9 @@ "compilerOptions": { "outDir": "./dist", "rootDir": "./src", - "declaration": true + "declaration": true, + "declarationMap": true, + "sourceMap": false }, "include": [ "src/**/*" @@ -15,7 +17,13 @@ "**/*.spec.ts" ], "references": [ + { "path": "../types" }, + { "path": "../config" }, { "path": "../logger" }, - { "path": "../types" } + { "path": "../utils" }, + { "path": "../postgres-client" }, + { "path": "../mongodb-client" }, + { "path": "../questdb-client" }, + { "path": "../cache" } ] } diff --git a/libs/logger/tsconfig.json b/libs/logger/tsconfig.json index 2367e22..f165596 100644 --- a/libs/logger/tsconfig.json +++ b/libs/logger/tsconfig.json @@ -15,5 +15,9 @@ "node_modules", "**/*.test.ts", "**/*.spec.ts" + ], + "references": [ + { "path": "../types" }, + { "path": "../config" } ] } diff --git a/libs/mongodb-client/tsconfig.json b/libs/mongodb-client/tsconfig.json index 4bd1852..5211252 100644 --- a/libs/mongodb-client/tsconfig.json +++ b/libs/mongodb-client/tsconfig.json @@ -15,10 +15,10 @@ "node_modules", "**/*.test.ts", "**/*.spec.ts" - ], - "references": [ + ], "references": [ + { "path": "../types" }, { "path": "../config" }, { "path": "../logger" }, - { "path": "../types" } + { "path": "../utils" } ] } diff --git a/libs/postgres-client/tsconfig.json b/libs/postgres-client/tsconfig.json index 4bd1852..5211252 100644 --- a/libs/postgres-client/tsconfig.json +++ b/libs/postgres-client/tsconfig.json @@ -15,10 +15,10 @@ "node_modules", "**/*.test.ts", "**/*.spec.ts" - ], - "references": [ + ], "references": [ + { "path": "../types" }, { "path": "../config" }, { "path": "../logger" }, - { "path": "../types" } + { "path": "../utils" } ] } diff --git a/libs/questdb-client/tsconfig.json b/libs/questdb-client/tsconfig.json index b984afd..5211252 100644 --- a/libs/questdb-client/tsconfig.json +++ b/libs/questdb-client/tsconfig.json @@ -16,9 +16,9 @@ "**/*.test.ts", "**/*.spec.ts" ], "references": [ - { "path": "../utils" }, + { "path": "../types" }, { "path": "../config" }, { "path": "../logger" }, - { "path": "../types" } + { "path": "../utils" } ] } diff --git a/libs/shutdown/tsconfig.json b/libs/shutdown/tsconfig.json index 2c58631..5b3e25a 100644 --- a/libs/shutdown/tsconfig.json +++ b/libs/shutdown/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig.lib.json", + "extends": "../../tsconfig.json", "compilerOptions": { "outDir": "./dist", "rootDir": "./src", @@ -15,5 +15,17 @@ "node_modules", "**/*.test.ts", "**/*.spec.ts" + ], + "references": [ + { "path": "../types" }, + { "path": "../config" }, + { "path": "../logger" }, + { "path": "../utils" }, + { "path": "../postgres-client" }, + { "path": "../mongodb-client" }, + { "path": "../questdb-client" }, + { "path": "../cache" }, + { "path": "../http" }, + { "path": "../event-bus" } ] } diff --git a/libs/strategy-engine/tsconfig.json b/libs/strategy-engine/tsconfig.json index a985370..22eed21 100644 --- a/libs/strategy-engine/tsconfig.json +++ b/libs/strategy-engine/tsconfig.json @@ -3,17 +3,32 @@ "compilerOptions": { "outDir": "./dist", "rootDir": "./src", - "declaration": true + "declaration": true, + "declarationMap": true, + "sourceMap": false }, "include": [ "src/**/*" ], - "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"], + "exclude": [ + "dist", + "node_modules", + "**/*.test.ts", + "**/*.spec.ts" + ], "references": [ - { "path": "../logger" }, { "path": "../types" }, - { "path": "../event-bus" }, - { "path": "../data-frame" }, + { "path": "../config" }, + { "path": "../logger" }, + { "path": "../utils" }, + { "path": "../postgres-client" }, + { "path": "../mongodb-client" }, + { "path": "../questdb-client" }, + { "path": "../cache" }, { "path": "../http" }, + { "path": "../event-bus" }, + { "path": "../shutdown" }, + { "path": "../data-frame" }, + { "path": "../vector-engine" } ] } diff --git a/libs/types/tsconfig.json b/libs/types/tsconfig.json index 2367e22..bc16b50 100644 --- a/libs/types/tsconfig.json +++ b/libs/types/tsconfig.json @@ -15,5 +15,6 @@ "node_modules", "**/*.test.ts", "**/*.spec.ts" - ] + ], + "references": [] } diff --git a/libs/utils/tsconfig.json b/libs/utils/tsconfig.json index 4ad4f6c..3eacd96 100644 --- a/libs/utils/tsconfig.json +++ b/libs/utils/tsconfig.json @@ -3,10 +3,22 @@ "compilerOptions": { "outDir": "./dist", "rootDir": "./src", - "declaration": true + "declaration": true, + "declarationMap": true, + "sourceMap": false }, "include": [ "src/**/*" ], - "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"], + "exclude": [ + "dist", + "node_modules", + "**/*.test.ts", + "**/*.spec.ts" + ], + "references": [ + { "path": "../types" }, + { "path": "../config" }, + { "path": "../logger" } + ] } diff --git a/libs/vector-engine/tsconfig.json b/libs/vector-engine/tsconfig.json index 355cabc..35b52f0 100644 --- a/libs/vector-engine/tsconfig.json +++ b/libs/vector-engine/tsconfig.json @@ -3,17 +3,31 @@ "compilerOptions": { "outDir": "./dist", "rootDir": "./src", - "declaration": true + "declaration": true, + "declarationMap": true, + "sourceMap": false }, "include": [ "src/**/*" ], - "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"], + "exclude": [ + "dist", + "node_modules", + "**/*.test.ts", + "**/*.spec.ts" + ], "references": [ - { "path": "../logger" }, { "path": "../types" }, - { "path": "../event-bus" }, - { "path": "../data-frame" }, + { "path": "../config" }, + { "path": "../logger" }, { "path": "../utils" }, + { "path": "../postgres-client" }, + { "path": "../mongodb-client" }, + { "path": "../questdb-client" }, + { "path": "../cache" }, + { "path": "../http" }, + { "path": "../event-bus" }, + { "path": "../shutdown" }, + { "path": "../data-frame" } ] }