vs-fix-sourcemaps
Version:
A Webpack plugin that fixes javascript sourcemaps in Visual Studio (2015), allowing for JSX and JS debugging directly in Visual Studio.
22 lines (19 loc) • 325 B
JavaScript
export function myTest(y) {
const x = 'some string';
return x + y;
}
export default class Test {
constructor() {
this.state = {};
}
haveAGoodDay() {
return 'hope so';
}
haveABadDay(sometimes) {
if (sometimes) {
return true;
}
return false;
}
}
export const helloWorld = () => { };