Skip to content

Commit 247e89f

Browse files
author
Csongor Zalatnai
committed
rationalised package structure
1 parent 3d35f0d commit 247e89f

File tree

5 files changed

+876
-4
lines changed

5 files changed

+876
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Node v10+
2727

2828
###Usage
2929
```
30-
PULL_REQUESTS_DATABASE_PATH=sample.db node ./node_modules/ts-node/dist/bin.js index.ts
30+
PULL_REQUESTS_DATABASE_PATH=sample.db node ./node_modules/ts-node/dist/bin.js src/index.ts
3131
```
3232

3333
The generated time series will be written to `stdout`.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "",
55
"main": "index.ts",
66
"scripts": {
7-
"start": "./node_modules/ts-node/dist/bin.js index.ts",
7+
"start": "./node_modules/ts-node/dist/bin.js src/index.ts",
88
"test": "echo \"Error: no test specified\" && exit 1"
99
},
1010
"author": "Csongor Zalatnai",
File renamed without changes.

tsconfig.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
{
22
"compilerOptions": {
3+
"baseUrl": "src",
34
"lib": ["es2017", "dom"],
45
"module": "commonjs",
5-
"target": "es2017"
6-
}
6+
"target": "es2017",
7+
8+
},
9+
"exclude": [
10+
"node_modules",
11+
"build"
12+
]
713
}

0 commit comments

Comments
 (0)