mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-26 14:59:14 +01:00
20 lines
261 B
TypeScript
20 lines
261 B
TypeScript
const config = {
|
|
sourceMaps: true,
|
|
module: {
|
|
type: "commonjs",
|
|
},
|
|
jsc: {
|
|
parser: {
|
|
syntax: "typescript",
|
|
tsx: true,
|
|
},
|
|
transform: {
|
|
react: {
|
|
runtime: "automatic",
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|