What would the tsconfig.json need to be to make this work in Chrome? So that I only had to run tsc and could then view the file in a browser and the appropriate result would display in the console?
index.html contains:
<!DOCTYPE html>
<html>
<head><title>TypeScript app</title></head>
<body>
<script src="dist/app.js"></script>
</body>
</html>
index.ts contains
import { alpha } from "alpha";
import { beta } from "beta";
console.log(alpha + " " + beta);
alpha contains
export const alpha = 'alpha';
beta contains
export const beta = 'beta';
The entry point would be index.ts and I would like it all bundled into a single file named app.js.