LeviBarnes 6 years ago
commit f57b31c44d
  1. 5
      remix-url-resolver/README.md
  2. 3
      remix-url-resolver/package.json
  3. 2
      remix-url-resolver/tsconfig.json

@ -30,3 +30,8 @@ urlResolver.resolve(fileName, urlHandler)
throw e throw e
}) })
``` ```
#### References
* [TypeScript Publishing](http://www.typescriptlang.org/docs/handbook/declaration-files/publishing.html)
* [DefinitelyTyped 'Create a new package' guide](https://github.com/DefinitelyTyped/DefinitelyTyped#create-a-new-package)

@ -2,7 +2,8 @@
"name": "remix-url-resolver", "name": "remix-url-resolver",
"version": "0.0.2", "version": "0.0.2",
"description": "Solidity import url resolver engine", "description": "Solidity import url resolver engine",
"main": "./dist/index.js", "main": "dist",
"types": "dist/index.d.ts",
"scripts": { "scripts": {
"build": "tsc", "build": "tsc",
"lint": "standard", "lint": "standard",

@ -5,7 +5,7 @@
"baseUrl": "./src", "baseUrl": "./src",
"outDir": "./dist", "outDir": "./dist",
"sourceMap": true, "sourceMap": true,
"declaration": false, "declaration": true,
"module": "commonjs", "module": "commonjs",
"strict": true, "strict": true,
"noImplicitAny": false, "noImplicitAny": false,

Loading…
Cancel
Save