Files
compiler-explorer/tsconfig.backend.json
Matt Godbolt 5ae6b304e4 Pre-compile typescript in releases (#3570)
* build the release in-place in out/dist
* run the tsc compiler on the code so everything is pre-transpiled
* serve the various generated html snippets uniformly from the web page so they come from one place.
2022-04-27 16:24:50 -05:00

18 lines
463 B
JSON

{
"extends": "./tsconfig.base.json",
"files": ["app.js"],
"include": ["**/*.js", "**/*.ts"],
"exclude": ["out", "test", "etc", "examples", "static", "**/*.d.ts"],
"compilerOptions": {
/* Module resolution */
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
/* Code generation */
"outDir": "./out/dist",
"typeRoots": ["./typings", "./node_modules/@types"],
/* Other options */
"allowJs": true
}
}