This commit is contained in:
David Arranz 2024-09-08 19:39:46 +02:00
parent bf15ecc4f7
commit 7d320f3972
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@
"scripts": {
"test": "jest --verbose",
"client:start": "cd client; yarn run dev:debug",
"server:start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register ./dist/src/index.js",
"server:start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register ./dist/server/src/index.js",
"clean": "concurrently --kill-others-on-fail \"cd server; yarn run clean\" \"cd shared; yarn run clean\" \"cd client; yarn run clean\" \"rm -rf node_modules\""
},
"engines": {

View File

@ -11,7 +11,7 @@
"jsx": "preserve" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */,
// "declaration": true, /* Generates corresponding '.d.ts' file. */
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
"sourceMap": true /* Generates corresponding '.map' file. */,
"sourceMap": false /* Generates corresponding '.map' file. */,
// "outFile": "./", /* Concatenate and emit output to single file. */
"outDir": "../dist/" /* Redirect output structure to the directory. */,
//"rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */,

View File

@ -11,7 +11,7 @@
"jsx": "preserve" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */,
// "declaration": true, /* Generates corresponding '.d.ts' file. */
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
"sourceMap": true /* Generates corresponding '.map' file. */,
"sourceMap": false /* Generates corresponding '.map' file. */,
// "outFile": "./", /* Concatenate and emit output to single file. */
"outDir": "../dist/" /* Redirect output structure to the directory. */,
//"rootDir": "./src" /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */,