Addon-knobs: straight rename js => ts

This commit simply transitions the files from js to ts to make the commit history clearer afterwards. Expected not to type-check.
This commit is contained in:
Emilio Martinez 2019-06-24 12:30:42 -07:00
parent 29d9924ce4
commit dfbf5d9cb5
25 changed files with 14 additions and 1 deletions

View File

@ -17,7 +17,7 @@
},
"license": "MIT",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "node ../../scripts/prepare.js"
},

View File

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