mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 09:23:52 -05:00
* 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.
18 lines
463 B
JSON
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
|
|
}
|
|
}
|