diff --git a/packages/app-cli/package.json b/packages/app-cli/package.json index 0ee626504..fed32c07a 100644 --- a/packages/app-cli/package.json +++ b/packages/app-cli/package.json @@ -12,7 +12,7 @@ "start": "gulp build -L && node \"build/main.js\" --stack-trace-enabled --log-level debug --env dev", "start-no-build": "node \"build/main.js\" --stack-trace-enabled --log-level debug --env dev", "tsc": "tsc --project tsconfig.json", - "watch": "tsc --watch --project tsconfig.json" + "watch": "tsc --watch --preserveWatchOutput --project tsconfig.json" }, "bugs": { "url": "https://github.com/laurent22/joplin/issues" diff --git a/packages/app-desktop/package.json b/packages/app-desktop/package.json index 41aac6945..44046373d 100644 --- a/packages/app-desktop/package.json +++ b/packages/app-desktop/package.json @@ -10,7 +10,7 @@ "postinstall": "yarn run build", "electronRebuild": "gulp electronRebuild", "tsc": "tsc --project tsconfig.json", - "watch": "tsc --watch --project tsconfig.json", + "watch": "tsc --watch --preserveWatchOutput --project tsconfig.json", "start": "gulp build && electron . --env dev --log-level debug --no-welcome --open-dev-tools", "test": "jest", "test-ci": "yarn test" diff --git a/packages/app-mobile/package.json b/packages/app-mobile/package.json index 9dfe4dd1a..f0e2101f1 100644 --- a/packages/app-mobile/package.json +++ b/packages/app-mobile/package.json @@ -7,8 +7,8 @@ "scripts": { "start": "react-native start --reset-cache", "build": "gulp build", - "tsc": "node node_modules/typescript/bin/tsc --project tsconfig.json", - "watch": "node node_modules/typescript/bin/tsc --watch --project tsconfig.json", + "tsc": "tsc --project tsconfig.json", + "watch": "tsc --watch --preserveWatchOutput --project tsconfig.json", "clean": "node tools/clean.js", "buildInjectedJs": "gulp buildInjectedJs", "watchInjectedJs": "nodemon --verbose --watch components/NoteEditor/CodeMirror.ts --exec \"yarn run buildInjectedJs\"", diff --git a/packages/htmlpack/package.json b/packages/htmlpack/package.json index 8b7fd0473..956da6fba 100644 --- a/packages/htmlpack/package.json +++ b/packages/htmlpack/package.json @@ -9,7 +9,7 @@ }, "scripts": { "tsc": "tsc --project tsconfig.json", - "watch": "tsc --watch --project tsconfig.json" + "watch": "tsc --watch --preserveWatchOutput --project tsconfig.json" }, "author": "Laurent Cozic", "license": "MIT", diff --git a/packages/lib/package.json b/packages/lib/package.json index 62bdd75f3..1eb768288 100644 --- a/packages/lib/package.json +++ b/packages/lib/package.json @@ -10,7 +10,7 @@ }, "scripts": { "tsc": "tsc --project tsconfig.json", - "watch": "tsc --watch --project tsconfig.json", + "watch": "tsc --watch --preserveWatchOutput --project tsconfig.json", "generatePluginTypes": "rm -rf ./plugin_types && yarn run tsc --declaration --declarationDir ./plugin_types --project tsconfig.json", "test": "jest --verbose=false", "test-ci": "yarn test" diff --git a/packages/plugin-repo-cli/package.json b/packages/plugin-repo-cli/package.json index e5c0282ff..277a5ab5f 100644 --- a/packages/plugin-repo-cli/package.json +++ b/packages/plugin-repo-cli/package.json @@ -9,7 +9,7 @@ }, "scripts": { "tsc": "tsc --project tsconfig.json", - "watch": "tsc --watch --project tsconfig.json", + "watch": "tsc --watch --preserveWatchOutput --project tsconfig.json", "test": "jest", "test-ci": "yarn test", "start": "node index.js", diff --git a/packages/renderer/package.json b/packages/renderer/package.json index f85299183..d80b80e1e 100644 --- a/packages/renderer/package.json +++ b/packages/renderer/package.json @@ -11,7 +11,7 @@ "scripts": { "buildAssets": "node Tools/buildAssets.js", "tsc": "tsc --project tsconfig.json", - "watch": "tsc --watch --project tsconfig.json", + "watch": "tsc --watch --preserveWatchOutput --project tsconfig.json", "test": "jest", "test-ci": "yarn test" }, diff --git a/packages/server/package.json b/packages/server/package.json index 2cb447076..ad6b385db 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -18,7 +18,7 @@ "test-debug": "node --inspect node_modules/.bin/jest -- --verbose=false", "clean": "gulp clean", "stripeListen": "stripe listen --forward-to http://joplincloud.local:22300/stripe/webhook", - "watch": "tsc --watch --project tsconfig.json" + "watch": "tsc --watch --preserveWatchOutput --project tsconfig.json" }, "dependencies": { "@aws-sdk/client-s3": "^3.40.0", diff --git a/packages/tools/package.json b/packages/tools/package.json index 98247cdb0..7facac7ee 100644 --- a/packages/tools/package.json +++ b/packages/tools/package.json @@ -7,7 +7,7 @@ "scripts": { "updateIgnored": "gulp updateIgnoredTypeScriptBuild", "tsc": "tsc --project tsconfig.json", - "watch": "tsc --watch --project tsconfig.json", + "watch": "tsc --watch --preserveWatchOutput --project tsconfig.json", "test": "jest --verbose=false", "test-ci": "yarn test" },