Skip to content

Commit 678dd42

Browse files
committed
clean up configuration files
1 parent 6c42b7a commit 678dd42

File tree

6 files changed

+7
-46
lines changed

6 files changed

+7
-46
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@ typings/
5858
.env
5959

6060
# Project-specific ignores
61-
prod
61+
build
6262
src/test.ts

.npmignore

+2
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,5 @@ test/aws.json
1414
examples
1515
test.*
1616
test.*
17+
ts*.json
18+
src

.vscode/launch.json

-28
This file was deleted.

.vscode/settings.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
"files.trimTrailingWhitespace": true,
66
"files.insertFinalNewline": true,
77
"files.exclude": {
8-
"**/prod": true,
8+
"**/build": true,
99
"**/node_modules": true,
1010
"**/coverage": true,
11+
"**/.nyc_output": true,
1112
"**/cache": true,
1213
"sessions.db": true
1314
},

.vscode/tasks.json

-15
This file was deleted.

tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"test/**/*"
55
],
66
"compilerOptions": {
7-
"outDir": "prod",
7+
"rootDir": ".",
8+
"outDir": "build",
89
"target": "ES5",
910
"module": "commonjs",
1011
"sourceMap": true,

0 commit comments

Comments
 (0)