updated tsconfigs

This commit is contained in:
Bojan Kucera 2025-06-07 14:51:48 -04:00
parent 8be4bfe6f2
commit b3b4dee8bc
14 changed files with 144 additions and 33 deletions

View file

@ -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" }
]
}

View file

@ -15,5 +15,8 @@
"node_modules",
"**/*.test.ts",
"**/*.spec.ts"
],
"references": [
{ "path": "../types" }
]
}

View file

@ -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" }
]
}

View file

@ -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" }
]
}

View file

@ -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" }
]
}

View file

@ -15,5 +15,9 @@
"node_modules",
"**/*.test.ts",
"**/*.spec.ts"
],
"references": [
{ "path": "../types" },
{ "path": "../config" }
]
}

View file

@ -15,10 +15,10 @@
"node_modules",
"**/*.test.ts",
"**/*.spec.ts"
],
"references": [
], "references": [
{ "path": "../types" },
{ "path": "../config" },
{ "path": "../logger" },
{ "path": "../types" }
{ "path": "../utils" }
]
}

View file

@ -15,10 +15,10 @@
"node_modules",
"**/*.test.ts",
"**/*.spec.ts"
],
"references": [
], "references": [
{ "path": "../types" },
{ "path": "../config" },
{ "path": "../logger" },
{ "path": "../types" }
{ "path": "../utils" }
]
}

View file

@ -16,9 +16,9 @@
"**/*.test.ts",
"**/*.spec.ts"
], "references": [
{ "path": "../utils" },
{ "path": "../types" },
{ "path": "../config" },
{ "path": "../logger" },
{ "path": "../types" }
{ "path": "../utils" }
]
}

View file

@ -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" }
]
}

View file

@ -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" }
]
}

View file

@ -15,5 +15,6 @@
"node_modules",
"**/*.test.ts",
"**/*.spec.ts"
]
],
"references": []
}

View file

@ -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" }
]
}

View file

@ -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" }
]
}