This commit is contained in:
2023-08-05 11:11:22 +00:00
parent a261b45e5d
commit 421d75f665
4 changed files with 12 additions and 4 deletions
+1
View File
@@ -33,6 +33,7 @@
"lodash-es": "^4.17.21",
"pinia": "^2.1.4",
"reflect-metadata": "^0.1.13",
"tslib": "^2.6.1",
"typeorm": "^0.3.17",
"vue": "^3.3.4",
"vue-router": "^4.2.4"
+3
View File
@@ -50,6 +50,9 @@ dependencies:
reflect-metadata:
specifier: ^0.1.13
version: 0.1.13
tslib:
specifier: ^2.6.1
version: 2.6.1
typeorm:
specifier: ^0.3.17
version: 0.3.17(ts-node@10.9.1)
+4
View File
@@ -12,6 +12,9 @@
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"allowSyntheticDefaultImports": true,
@@ -19,5 +22,6 @@
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"strict": true,
"importHelpers": true
}
}
+4 -4
View File
@@ -55,7 +55,7 @@
"outDir": "./dist_server/", /* Specify an output folder for all emitted files. */
// "removeComments": true, /* Disable emitting comments. */
// "noEmit": true, /* Disable emitting files from a compilation. */
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
"importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
// "importsNotUsedAsValues": "error", /* Specify emit/checking behavior for imports that are only used for types. */
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
@@ -89,11 +89,11 @@
// "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
// "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
// "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
"noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
"noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
// "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
"noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
"noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
/* Completeness */