Skip to content

Commit e9efb0e

Browse files
committed
Converts js to ts
1 parent 4dc4574 commit e9efb0e

File tree

9 files changed

+19
-1
lines changed

9 files changed

+19
-1
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
"mocha": "^3.1.2",
4646
"rimraf": "^2.5.4",
4747
"sinon": "^1.17.7",
48-
"supertest": "^3.0.0"
48+
"supertest": "^3.0.0",
49+
"typings": "^2.1.1"
4950
}
5051
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/util.js renamed to src/util.ts

File renamed without changes.

tsconfig.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es5",
4+
"module": "commonjs",
5+
"moduleResolution": "node",
6+
"sourceMap": true,
7+
"emitDecoratorMetadata": true,
8+
"experimentalDecorators": true,
9+
"removeComments": false,
10+
"noImplicitAny": false
11+
}
12+
}

typings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"globalDependencies": {
3+
4+
}
5+
}

0 commit comments

Comments
 (0)