mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 09:23:52 -05:00
25 lines
478 B
JSON
25 lines
478 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
/* Module resolution */
|
|
"target": "es5",
|
|
"rootDirs": ["./static", "./types"],
|
|
/* 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"
|
|
]
|
|
}
|