updated tsconfigs
This commit is contained in:
parent
8be4bfe6f2
commit
b3b4dee8bc
14 changed files with 144 additions and 33 deletions
18
libs/cache/tsconfig.json
vendored
18
libs/cache/tsconfig.json
vendored
|
|
@ -3,14 +3,26 @@
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"declaration": true
|
"declaration": true,
|
||||||
|
"declarationMap": true,
|
||||||
|
"sourceMap": false
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src/**/*"
|
"src/**/*"
|
||||||
],
|
],
|
||||||
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"],
|
"exclude": [
|
||||||
|
"dist",
|
||||||
|
"node_modules",
|
||||||
|
"**/*.test.ts",
|
||||||
|
"**/*.spec.ts"
|
||||||
|
],
|
||||||
"references": [
|
"references": [
|
||||||
|
{ "path": "../types" },
|
||||||
|
{ "path": "../config" },
|
||||||
{ "path": "../logger" },
|
{ "path": "../logger" },
|
||||||
{ "path": "../config" }
|
{ "path": "../utils" },
|
||||||
|
{ "path": "../postgres-client" },
|
||||||
|
{ "path": "../mongodb-client" },
|
||||||
|
{ "path": "../questdb-client" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,5 +15,8 @@
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"**/*.test.ts",
|
"**/*.test.ts",
|
||||||
"**/*.spec.ts"
|
"**/*.spec.ts"
|
||||||
|
],
|
||||||
|
"references": [
|
||||||
|
{ "path": "../types" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,14 +3,30 @@
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"declaration": true
|
"declaration": true,
|
||||||
|
"declarationMap": true,
|
||||||
|
"sourceMap": false
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src/**/*"
|
"src/**/*"
|
||||||
],
|
],
|
||||||
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"],
|
"exclude": [
|
||||||
|
"dist",
|
||||||
|
"node_modules",
|
||||||
|
"**/*.test.ts",
|
||||||
|
"**/*.spec.ts"
|
||||||
|
],
|
||||||
"references": [
|
"references": [
|
||||||
|
{ "path": "../types" },
|
||||||
|
{ "path": "../config" },
|
||||||
{ "path": "../logger" },
|
{ "path": "../logger" },
|
||||||
{ "path": "../types" }
|
{ "path": "../utils" },
|
||||||
|
{ "path": "../postgres-client" },
|
||||||
|
{ "path": "../mongodb-client" },
|
||||||
|
{ "path": "../questdb-client" },
|
||||||
|
{ "path": "../cache" },
|
||||||
|
{ "path": "../http" },
|
||||||
|
{ "path": "../event-bus" },
|
||||||
|
{ "path": "../shutdown" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,14 +3,28 @@
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"declaration": true
|
"declaration": true,
|
||||||
|
"declarationMap": true,
|
||||||
|
"sourceMap": false
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src/**/*"
|
"src/**/*"
|
||||||
],
|
],
|
||||||
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"],
|
"exclude": [
|
||||||
|
"dist",
|
||||||
|
"node_modules",
|
||||||
|
"**/*.test.ts",
|
||||||
|
"**/*.spec.ts"
|
||||||
|
],
|
||||||
"references": [
|
"references": [
|
||||||
|
{ "path": "../types" },
|
||||||
|
{ "path": "../config" },
|
||||||
{ "path": "../logger" },
|
{ "path": "../logger" },
|
||||||
{ "path": "../types" }
|
{ "path": "../utils" },
|
||||||
|
{ "path": "../postgres-client" },
|
||||||
|
{ "path": "../mongodb-client" },
|
||||||
|
{ "path": "../questdb-client" },
|
||||||
|
{ "path": "../cache" },
|
||||||
|
{ "path": "../http" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,9 @@
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"declaration": true
|
"declaration": true,
|
||||||
|
"declarationMap": true,
|
||||||
|
"sourceMap": false
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src/**/*"
|
"src/**/*"
|
||||||
|
|
@ -15,7 +17,13 @@
|
||||||
"**/*.spec.ts"
|
"**/*.spec.ts"
|
||||||
],
|
],
|
||||||
"references": [
|
"references": [
|
||||||
|
{ "path": "../types" },
|
||||||
|
{ "path": "../config" },
|
||||||
{ "path": "../logger" },
|
{ "path": "../logger" },
|
||||||
{ "path": "../types" }
|
{ "path": "../utils" },
|
||||||
|
{ "path": "../postgres-client" },
|
||||||
|
{ "path": "../mongodb-client" },
|
||||||
|
{ "path": "../questdb-client" },
|
||||||
|
{ "path": "../cache" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,5 +15,9 @@
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"**/*.test.ts",
|
"**/*.test.ts",
|
||||||
"**/*.spec.ts"
|
"**/*.spec.ts"
|
||||||
|
],
|
||||||
|
"references": [
|
||||||
|
{ "path": "../types" },
|
||||||
|
{ "path": "../config" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,10 +15,10 @@
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"**/*.test.ts",
|
"**/*.test.ts",
|
||||||
"**/*.spec.ts"
|
"**/*.spec.ts"
|
||||||
],
|
], "references": [
|
||||||
"references": [
|
{ "path": "../types" },
|
||||||
{ "path": "../config" },
|
{ "path": "../config" },
|
||||||
{ "path": "../logger" },
|
{ "path": "../logger" },
|
||||||
{ "path": "../types" }
|
{ "path": "../utils" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,10 +15,10 @@
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"**/*.test.ts",
|
"**/*.test.ts",
|
||||||
"**/*.spec.ts"
|
"**/*.spec.ts"
|
||||||
],
|
], "references": [
|
||||||
"references": [
|
{ "path": "../types" },
|
||||||
{ "path": "../config" },
|
{ "path": "../config" },
|
||||||
{ "path": "../logger" },
|
{ "path": "../logger" },
|
||||||
{ "path": "../types" }
|
{ "path": "../utils" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -16,9 +16,9 @@
|
||||||
"**/*.test.ts",
|
"**/*.test.ts",
|
||||||
"**/*.spec.ts"
|
"**/*.spec.ts"
|
||||||
], "references": [
|
], "references": [
|
||||||
{ "path": "../utils" },
|
{ "path": "../types" },
|
||||||
{ "path": "../config" },
|
{ "path": "../config" },
|
||||||
{ "path": "../logger" },
|
{ "path": "../logger" },
|
||||||
{ "path": "../types" }
|
{ "path": "../utils" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"extends": "../../tsconfig.lib.json",
|
"extends": "../../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
|
|
@ -15,5 +15,17 @@
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"**/*.test.ts",
|
"**/*.test.ts",
|
||||||
"**/*.spec.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" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,17 +3,32 @@
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"declaration": true
|
"declaration": true,
|
||||||
|
"declarationMap": true,
|
||||||
|
"sourceMap": false
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src/**/*"
|
"src/**/*"
|
||||||
],
|
],
|
||||||
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"],
|
"exclude": [
|
||||||
|
"dist",
|
||||||
|
"node_modules",
|
||||||
|
"**/*.test.ts",
|
||||||
|
"**/*.spec.ts"
|
||||||
|
],
|
||||||
"references": [
|
"references": [
|
||||||
{ "path": "../logger" },
|
|
||||||
{ "path": "../types" },
|
{ "path": "../types" },
|
||||||
{ "path": "../event-bus" },
|
{ "path": "../config" },
|
||||||
{ "path": "../data-frame" },
|
{ "path": "../logger" },
|
||||||
|
{ "path": "../utils" },
|
||||||
|
{ "path": "../postgres-client" },
|
||||||
|
{ "path": "../mongodb-client" },
|
||||||
|
{ "path": "../questdb-client" },
|
||||||
|
{ "path": "../cache" },
|
||||||
{ "path": "../http" },
|
{ "path": "../http" },
|
||||||
|
{ "path": "../event-bus" },
|
||||||
|
{ "path": "../shutdown" },
|
||||||
|
{ "path": "../data-frame" },
|
||||||
|
{ "path": "../vector-engine" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,5 +15,6 @@
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"**/*.test.ts",
|
"**/*.test.ts",
|
||||||
"**/*.spec.ts"
|
"**/*.spec.ts"
|
||||||
]
|
],
|
||||||
|
"references": []
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,10 +3,22 @@
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"declaration": true
|
"declaration": true,
|
||||||
|
"declarationMap": true,
|
||||||
|
"sourceMap": false
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src/**/*"
|
"src/**/*"
|
||||||
],
|
],
|
||||||
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"],
|
"exclude": [
|
||||||
|
"dist",
|
||||||
|
"node_modules",
|
||||||
|
"**/*.test.ts",
|
||||||
|
"**/*.spec.ts"
|
||||||
|
],
|
||||||
|
"references": [
|
||||||
|
{ "path": "../types" },
|
||||||
|
{ "path": "../config" },
|
||||||
|
{ "path": "../logger" }
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,17 +3,31 @@
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"declaration": true
|
"declaration": true,
|
||||||
|
"declarationMap": true,
|
||||||
|
"sourceMap": false
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src/**/*"
|
"src/**/*"
|
||||||
],
|
],
|
||||||
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"],
|
"exclude": [
|
||||||
|
"dist",
|
||||||
|
"node_modules",
|
||||||
|
"**/*.test.ts",
|
||||||
|
"**/*.spec.ts"
|
||||||
|
],
|
||||||
"references": [
|
"references": [
|
||||||
{ "path": "../logger" },
|
|
||||||
{ "path": "../types" },
|
{ "path": "../types" },
|
||||||
{ "path": "../event-bus" },
|
{ "path": "../config" },
|
||||||
{ "path": "../data-frame" },
|
{ "path": "../logger" },
|
||||||
{ "path": "../utils" },
|
{ "path": "../utils" },
|
||||||
|
{ "path": "../postgres-client" },
|
||||||
|
{ "path": "../mongodb-client" },
|
||||||
|
{ "path": "../questdb-client" },
|
||||||
|
{ "path": "../cache" },
|
||||||
|
{ "path": "../http" },
|
||||||
|
{ "path": "../event-bus" },
|
||||||
|
{ "path": "../shutdown" },
|
||||||
|
{ "path": "../data-frame" }
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue