diff --git a/package.json b/package.json index aa496e0..303417f 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/server/tsconfig.json b/server/tsconfig.json index 8a53910..bc13319 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -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. */, diff --git a/shared/tsconfig.json b/shared/tsconfig.json index 1f03835..632ded6 100644 --- a/shared/tsconfig.json +++ b/shared/tsconfig.json @@ -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. */,