diff --git a/Gruntfile.js b/Gruntfile.js index dbd53f2018ec..fe32339aa14d 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -62,10 +62,6 @@ module.exports = function (grunt) { 'node_modules/typescript/lib/tsc.js', '--project', 'node.tsconfig.json', '--outDir', 'out-node/', - '--incremental', 'true', - '--tsBuildInfoFile', 'out-node/build.tsbuildinfo', - '--noEmit', 'false', - '--declaration', 'false' ], }, 'copy-assets': { diff --git a/node.tsconfig.json b/node.tsconfig.json index 3b7b6ab9f69f..74707d408d49 100644 --- a/node.tsconfig.json +++ b/node.tsconfig.json @@ -5,7 +5,10 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "module": "commonjs" + "module": "commonjs", + "incremental": false, + "noEmit": false, + "declaration": false, }, "exclude": [ @@ -14,4 +17,4 @@ "src/common/runtime/helper/test_worker.ts", "src/webgpu/web_platform/worker/worker_launcher.ts" ] -} \ No newline at end of file +}