Files
compiler-explorer/tsconfig.frontend.json
Mats Jun Larsen 6d6bd949e8 Enumerate all logo files for webpack
When we move to Vite we won't have the `require.context`-like functionality that
webpack has. For this reason we have to enumerate all the files and import them
individually.

I will be opening a similar patch for the site template screenshot images.

The `logoUrl` and `logoUrlDark` fields have been renamed to `logoFilename` to
be more accurate for what the keys are now. Sonar file was also renamed for
consistency sake.
2025-06-12 17:18:31 +09:00

25 lines
489 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
/* Module resolution */
"target": "es5",
"rootDirs": ["./static", "./types", "./views"],
/* Code generation */
"inlineSources": true,
"strictPropertyInitialization": false,
"lib": ["dom", "es5", "dom.iterable"]
},
"exclude": [
"out",
"test",
"etc",
"examples",
"app.ts",
"compiler-args-app.ts",
"lib",
"examples",
"webpack.config.esm.ts",
"cypress"
]
}