Skip to content

Commit

Permalink
fix(build): transpile to ES5
Browse files Browse the repository at this point in the history
  • Loading branch information
Oscar Bartra committed Jan 21, 2020
1 parent 6c63e5f commit de07c6b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
"contributors:add": "all-contributors add",
"contributors:gen": "all-contributors generate",
"format": "prettier --write \"{src,test,types,scripts,storybook}/**/*.{js,tsx,ts}\"",
"lint:tsc": "tsc --noEmit",
"lint:tsc": "tsc",
"lint:eslint": "eslint scripts src/{**/,}*.tsx storybook test --fix",
"lint": "npm-run-all --parallel lint:*",
"start:storybook": "start-storybook -p 9001 -c storybook",
Expand Down
2 changes: 2 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"outDir": "dist",
"declaration": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"isolatedModules": false,
"jsx": "react",
Expand Down

0 comments on commit de07c6b

Please sign in to comment.