Last active
January 14, 2020 03:03
-
-
Save SeanJM/263f9dda94ed6e9bf4323bd0b136de73 to your computer and use it in GitHub Desktop.
TypeScript, VueJS and JSX webpack configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"presets": [], | |
"plugins": ["transform-vue-jsx", "transform-es2015-modules-commonjs"] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm i -S \ | |
@types/core-js \ | |
vue \ | |
typescript \ | |
ts-loader \ | |
webpack \ | |
babel \ | |
babel-core \ | |
babel-loader \ | |
babel-plugin-syntax-jsx \ | |
babel-plugin-transform-es2015-modules-commonjs \ | |
babel-plugin-transform-vue-jsx \ | |
babel-helper-vue-jsx-merge-props |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"compilerOptions": { | |
"jsx": "preserve", | |
"module": "commonjs", | |
"moduleResolution": "node", | |
"outDir": "bin/", | |
"sourceMap": true, | |
"removeComments": true, | |
"target": "es5" | |
}, | |
"include": [ | |
"src/**/*" | |
], | |
"files": [ | |
"src/app.tsx" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
entry: "./src/app.tsx", | |
output: { | |
filename: "bin/bundle.js" | |
}, | |
resolve: { | |
// Add '.ts' and '.tsx' as a resolvable extension. | |
extensions: ["", ".webpack.js", ".web.js", ".ts", ".tsx", ".js"] | |
}, | |
module: { | |
loaders: [ | |
// It's important to run 'babel' first this will avoid a compilation error | |
{ test: /\.tsx?$/, loader: "babel" }, | |
// Run ts loader to transform our typescript into JS | |
{ test: /\.tsx?$/, loader: "ts-loader" } | |
] | |
}, | |
// If you want to load 'vue' as an external, and not include it in your bundle | |
// simply add it to the array. | |
externals : [] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It should be noted, that even though webpack will take in the entry point and the application will compile without errors, linting the code will throw warnings about the
--jsx
flag missing unless the entry point is supplied in thetsconfig.json
.