├── .gitignore ├── LICENSE ├── README.md ├── VueTypescriptVS.sln └── VueTypescriptVS ├── .babelrc ├── .gitignore ├── App_Start ├── BundleConfig.cs ├── FilterConfig.cs └── RouteConfig.cs ├── Controllers └── HomeController.cs ├── Global.asax ├── Global.asax.cs ├── Properties └── AssemblyInfo.cs ├── Scripts └── src │ ├── components │ ├── Demo.js │ ├── Demo.js.map │ ├── Demo.ts │ ├── Demo.vue │ ├── greeting.js │ ├── greeting.js.map │ └── greeting.ts │ ├── index.js │ ├── index.js.map │ ├── index.ts │ ├── lib │ └── vue-class-component │ │ ├── component.js │ │ ├── component.js.map │ │ ├── component.ts │ │ ├── data.js │ │ ├── data.js.map │ │ ├── data.ts │ │ ├── declarations.js │ │ ├── declarations.js.map │ │ ├── declarations.ts │ │ ├── globals.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── index.ts │ │ ├── util.js │ │ ├── util.js.map │ │ └── util.ts │ └── typings │ ├── index.d.ts │ └── vue │ ├── index.d.ts │ ├── options.d.ts │ ├── plugin.d.ts │ ├── typings.json │ ├── vnode.d.ts │ └── vue.d.ts ├── Startup.cs ├── Views ├── Home │ └── Index.cshtml ├── Shared │ ├── Error.cshtml │ ├── Lockout.cshtml │ └── _Layout.cshtml ├── Web.config └── _ViewStart.cshtml ├── VueTypescriptVS.csproj ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── favicon.ico ├── index.html ├── package.json ├── packages.config ├── tsconfig.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/README.md -------------------------------------------------------------------------------- /VueTypescriptVS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS.sln -------------------------------------------------------------------------------- /VueTypescriptVS/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/.babelrc -------------------------------------------------------------------------------- /VueTypescriptVS/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | src/**/*.js 6 | -------------------------------------------------------------------------------- /VueTypescriptVS/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /VueTypescriptVS/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /VueTypescriptVS/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /VueTypescriptVS/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Controllers/HomeController.cs -------------------------------------------------------------------------------- /VueTypescriptVS/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Global.asax -------------------------------------------------------------------------------- /VueTypescriptVS/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Global.asax.cs -------------------------------------------------------------------------------- /VueTypescriptVS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/components/Demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/components/Demo.js -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/components/Demo.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/components/Demo.js.map -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/components/Demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/components/Demo.ts -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/components/Demo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/components/Demo.vue -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/components/greeting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/components/greeting.js -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/components/greeting.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/components/greeting.js.map -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/components/greeting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/components/greeting.ts -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/index.js -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/index.js.map -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/index.ts -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/lib/vue-class-component/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/lib/vue-class-component/component.js -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/lib/vue-class-component/component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/lib/vue-class-component/component.js.map -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/lib/vue-class-component/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/lib/vue-class-component/component.ts -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/lib/vue-class-component/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/lib/vue-class-component/data.js -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/lib/vue-class-component/data.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/lib/vue-class-component/data.js.map -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/lib/vue-class-component/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/lib/vue-class-component/data.ts -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/lib/vue-class-component/declarations.js: -------------------------------------------------------------------------------- 1 | //# sourceMappingURL=declarations.js.map -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/lib/vue-class-component/declarations.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/lib/vue-class-component/declarations.js.map -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/lib/vue-class-component/declarations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/lib/vue-class-component/declarations.ts -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/lib/vue-class-component/globals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/lib/vue-class-component/globals.d.ts -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/lib/vue-class-component/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/lib/vue-class-component/index.js -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/lib/vue-class-component/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/lib/vue-class-component/index.js.map -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/lib/vue-class-component/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/lib/vue-class-component/index.ts -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/lib/vue-class-component/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/lib/vue-class-component/util.js -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/lib/vue-class-component/util.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/lib/vue-class-component/util.js.map -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/lib/vue-class-component/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/lib/vue-class-component/util.ts -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/typings/index.d.ts: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/typings/vue/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/typings/vue/index.d.ts -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/typings/vue/options.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/typings/vue/options.d.ts -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/typings/vue/plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/typings/vue/plugin.d.ts -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/typings/vue/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/typings/vue/typings.json -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/typings/vue/vnode.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/typings/vue/vnode.d.ts -------------------------------------------------------------------------------- /VueTypescriptVS/Scripts/src/typings/vue/vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Scripts/src/typings/vue/vue.d.ts -------------------------------------------------------------------------------- /VueTypescriptVS/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Startup.cs -------------------------------------------------------------------------------- /VueTypescriptVS/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewBag.Title = "Home Page"; 3 | } 4 | 5 |
-------------------------------------------------------------------------------- /VueTypescriptVS/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /VueTypescriptVS/Views/Shared/Lockout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Views/Shared/Lockout.cshtml -------------------------------------------------------------------------------- /VueTypescriptVS/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /VueTypescriptVS/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Views/Web.config -------------------------------------------------------------------------------- /VueTypescriptVS/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /VueTypescriptVS/VueTypescriptVS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/VueTypescriptVS.csproj -------------------------------------------------------------------------------- /VueTypescriptVS/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Web.Debug.config -------------------------------------------------------------------------------- /VueTypescriptVS/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Web.Release.config -------------------------------------------------------------------------------- /VueTypescriptVS/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/Web.config -------------------------------------------------------------------------------- /VueTypescriptVS/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/favicon.ico -------------------------------------------------------------------------------- /VueTypescriptVS/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/index.html -------------------------------------------------------------------------------- /VueTypescriptVS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/package.json -------------------------------------------------------------------------------- /VueTypescriptVS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/packages.config -------------------------------------------------------------------------------- /VueTypescriptVS/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/tsconfig.json -------------------------------------------------------------------------------- /VueTypescriptVS/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nature613/vue-webpack-typescript-vs2015/HEAD/VueTypescriptVS/webpack.config.js --------------------------------------------------------------------------------