2.0.0 • Published 5 years ago
@ethereumjs/config-typescript v2.0.0
@ethereumjs/config-typescript
Common TypeScript configuration for EthereumJS libraries.
Tool: TypeScript
Exposed CLI commands:
ethereumjs-config-ts-compileethereumjs-config-ts-build
Usage
The three files below compose the functionality built into ./cli/ts-build.sh and ./cli/ts-compile.sh. Note that the browser build is optional, and in the case it's not present in your project, browser builds will be ignored.
Add tsconfig.json:
{
"extends": "@ethereumjs/config-typescript/tsconfig.json",
"include": ["src/**/*.ts", "test/**/*.ts"]
}Add tsconfig.prod.json:
{
"extends": "@ethereumjs/config-typescript/tsconfig.prod.json",
"include": ["src/**/*.ts"],
"compilerOptions": {
"outDir": "./dist"
}
}Add tsconfig.browser.json:
{
"extends": "@ethereumjs/config-typescript/tsconfig.browser.json",
"include": ["src/**/*.ts"],
"compilerOptions": {
"outDir": "./dist.browser"
}
}Note: the outDir property is mandatory to generate assets to a directory.
Use CLI commands above in your package.json:
"scripts": {
"tsc": "ethereumjs-config-ts-compile",
"build": "ethereumjs-config-ts-build"
}The default production target is ES2017. To support shipping the ES5 target for browsers, add to your package.json:
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist.browser/index.js",
"files": [
"dist",
"dist.browser"
]2.0.0
5 years ago