tsconfig.json
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "tsx watch src/index.ts",
|
"dev": "tsx watch src/index.ts",
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
"start": "node dist/index.js",
|
"start": "node dist/src/index.js",
|
||||||
"schema:index": "ts-node scripts/generate-schema-index.ts"
|
"schema:index": "ts-node scripts/generate-schema-index.ts"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ import {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
import {resourceConfig} from "../../resource.config";
|
import {resourceConfig} from "../../utils/resource.config";
|
||||||
|
|
||||||
// -------------------------------------------------------------
|
// -------------------------------------------------------------
|
||||||
// SQL Volltextsuche auf mehreren Feldern
|
// SQL Volltextsuche auf mehreren Feldern
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import {
|
|||||||
projects,
|
projects,
|
||||||
projecttypes, servicecategories, services, spaces, tasks, texttemplates, units, vehicles,
|
projecttypes, servicecategories, services, spaces, tasks, texttemplates, units, vehicles,
|
||||||
vendors
|
vendors
|
||||||
} from "../db/schema";
|
} from "../../db/schema";
|
||||||
|
|
||||||
export const resourceConfig = {
|
export const resourceConfig = {
|
||||||
projects: {
|
projects: {
|
||||||
@@ -11,6 +11,6 @@
|
|||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"rootDir": "."
|
"rootDir": "."
|
||||||
},
|
},
|
||||||
"include": ["src","db"],
|
"include": ["src","db","*.ts"],
|
||||||
"exclude": ["node_modules", "dist"]
|
"exclude": ["node_modules", "dist"]
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user