Skip to content

Commit

Permalink
App-html: straight rename js => ts
Browse files Browse the repository at this point in the history
  • Loading branch information
emilio-martinez committed Jul 8, 2019
1 parent b0d3cbf commit fee293e
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/html/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
},
"license": "MIT",
"main": "dist/client/index.js",
"types": "dist/client/index.d.ts",
"bin": {
"build-storybook": "./bin/build.js",
"start-storybook": "./bin/index.js",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions app/html/src/typings.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
declare module 'global';
declare module '*.json';
declare module '@storybook/core/client';
declare module '@storybook/core/server';
9 changes: 9 additions & 0 deletions app/html/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": "./src",
"types": ["webpack-env"]
},
"include": ["src/**/*"],
"exclude": ["src/__tests__/**/*"]
}

0 comments on commit fee293e

Please sign in to comment.