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