From c7b718f4e106ebd772b9c31d9290b7d10d9f8b0a Mon Sep 17 00:00:00 2001 From: M J Chowdhury Date: Wed, 4 Jul 2018 08:08:26 +0600 Subject: [PATCH] index.ts file need to create index.ts file need to create due to webpack entrypoint: './src/index.ts' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e3e93ad3..1ca83026 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ typescript-vue-tutorial/ └─ components/ ``` -TypeScript files will start out in your `src` folder, run through the TypeScript compiler, then webpack, and end up in a `bundle.js` file in `dist`. +TypeScript files will start out in your `src` folder's index.ts file, run through the TypeScript compiler, then webpack, and end up in a `bundle.js` file in `dist`. Any components that we write will go in the `src/components` folder. Let's scaffold this out: