App-html: straight rename js => ts

This commit is contained in:
Emilio Martinez 2019-07-08 03:32:43 -07:00
parent 32d3d476c4
commit f530ef2dca
11 changed files with 14 additions and 0 deletions

View File

@ -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",

4
app/html/src/typings.d.ts vendored Normal file
View File

@ -0,0 +1,4 @@
declare module 'global';
declare module '*.json';
declare module '@storybook/core/client';
declare module '@storybook/core/server';

9
app/html/tsconfig.json Normal file
View File

@ -0,0 +1,9 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": "./src",
"types": ["webpack-env"]
},
"include": ["src/**/*"],
"exclude": ["src/__tests__/**/*"]
}