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 2039cbe commit 0813f98
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.
3 changes: 3 additions & 0 deletions app/html/src/typings.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
declare module 'global';
declare module '@storybook/core/client';
declare module '@storybook/core/server';
10 changes: 10 additions & 0 deletions app/html/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": "./src",
"types": ["webpack-env"],
"resolveJsonModule": true
},
"include": ["src/**/*"],
"exclude": ["src/__tests__/**/*"]
}

0 comments on commit 0813f98

Please sign in to comment.