Fixed Things

This commit is contained in:
2025-05-05 23:05:24 +02:00
parent 2e29af4434
commit 994b0c938e
3 changed files with 7 additions and 4 deletions

4
.gitignore vendored
View File

@@ -1 +1,3 @@
./build
build
./tsconfig.tsbuildinfo

View File

@@ -13,8 +13,9 @@
"license": "MIT",
"author": "Zacharias",
"type": "module",
"main": "app.js",
"main": "./build/app.js",
"scripts": {
"start": "node build/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
}
}

View File

@@ -25,7 +25,7 @@
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
/* Modules */
"module": "module", /* Specify what module code is generated. */
"module": "commonjs", /* Specify what module code is generated. */
"rootDir": "./src/", /* Specify the root folder within your source files. */
// "moduleResolution": "node10", /* Specify how TypeScript looks up a file from a given module specifier. */
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
@@ -57,7 +57,7 @@
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
// "noEmit": true, /* Disable emitting files from a compilation. */
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
// "outDir": "./build/", /* Specify an output folder for all emitted files. */
"outDir": "./build/", /* Specify an output folder for all emitted files. */
// "removeComments": true, /* Disable emitting comments. */
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */