Keep tsbuildinfo in dist, don't remove it

This commit is contained in:
Ben Woodward 2019-04-18 21:34:10 +01:00
parent b5593466e0
commit 1ab2f0948f
2 changed files with 0 additions and 2 deletions

View File

@ -9,7 +9,6 @@
"start": "ts-node -r tsconfig-paths/register src/main.ts", "start": "ts-node -r tsconfig-paths/register src/main.ts",
"start:dev": "concurrently --names \"NODEMON,TSC\" --handle-input \"wait-on dist/main.js && nodemon\" \"tsc -w -p tsconfig.build.json\" ", "start:dev": "concurrently --names \"NODEMON,TSC\" --handle-input \"wait-on dist/main.js && nodemon\" \"tsc -w -p tsconfig.build.json\" ",
"start:debug": "nodemon --config nodemon-debug.json", "start:debug": "nodemon --config nodemon-debug.json",
"prestart:dev": "rimraf dist",
"prestart:prod": "rimraf dist && npm run build", "prestart:prod": "rimraf dist && npm run build",
"start:prod": "node dist/main.js", "start:prod": "node dist/main.js",
"lint": "tslint -p tsconfig.json -c tslint.json", "lint": "tslint -p tsconfig.json -c tslint.json",

View File

@ -10,7 +10,6 @@
"outDir": "./dist", "outDir": "./dist",
"baseUrl": "./", "baseUrl": "./",
"incremental": true, "incremental": true,
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
}, },
"exclude": ["node_modules", "dist"] "exclude": ["node_modules", "dist"]
} }