Skip to content

Commit

Permalink
Change TS compilation output directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
itirabasso committed Jan 25, 2019
1 parent d01cf1c commit 57c2fbb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -5,7 +5,7 @@
/docs/.vuepress/dist/

# TS compilation output
/dist/
/dev-build/

# Code coverage artifacts
/coverage
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -30,7 +30,7 @@
"test": "nyc mocha",
"dev:build": "tsc",
"dev:watch": "tsc -w",
"dev:clean": "rm -rf dist",
"dev:clean": "rm -rf dev-build",
"prod:build": "tsc --p tsconfig.prod.json",
"prod:watch": "tsc -w --p tsconfig.prod.json",
"prod:clean": "rm -rf builtin-tasks internal *.d.ts *.map *.js"
Expand Down Expand Up @@ -84,7 +84,7 @@
],
"exclude": [
"**/*.d.ts",
"dist",
"dev-build",
"sample-project",
"test",
"coverage",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
@@ -1,7 +1,7 @@
{
"extends": "./tsconfig.common",
"compilerOptions": {
"outDir": "./dist",
"outDir": "./dev-build",
"rootDirs": ["./src", "./test"]
},
"include": ["./test", "./src/**/*.ts"]
Expand Down

0 comments on commit 57c2fbb

Please sign in to comment.