Skip to content
This repository was archived by the owner on Sep 4, 2020. It is now read-only.

Commit 2e50e3d

Browse files
authored
rewrite module resolver (#35)
1 parent f549e7a commit 2e50e3d

17 files changed

+838
-475
lines changed

.prettierrc

Lines changed: 0 additions & 10 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@ install:
1919
- yarn
2020

2121
script:
22-
- yarn lint
2322
- yarn compile

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"typescript.tsdk": "node_modules/typescript/lib"
3+
}

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"scripts": {
77
"prepublish": "tsc",
88
"compile": "tsc",
9-
"lint": "tslint -c tslint.json 'src/**/*.ts'",
109
"types": "deno types > lib/lib.deno_runtime.d.ts"
1110
},
1211
"keywords": [
@@ -20,13 +19,13 @@
2019
"url": "https://github.com/justjavac/typescript-deno-plugin.git"
2120
},
2221
"dependencies": {
22+
"crypto": "^1.0.1",
2323
"merge-deep": "^3.0.2",
2424
"mock-require": "^3.0.3"
2525
},
2626
"devDependencies": {
2727
"@types/mock-require": "^2.0.0",
28-
"@types/node": "^13.11.1",
29-
"tslint": "^6.1.1",
28+
"@types/node": "^13.13.4",
3029
"typescript": "^3.8.3"
3130
}
3231
}

0 commit comments

Comments
 (0)