mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 09:23:52 -05:00
19 lines
523 B
JSON
19 lines
523 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"files": ["app.ts", "compiler-args-app.ts"],
|
|
"include": ["**/*.js", "**/*.ts"],
|
|
"exclude": ["out", "test", "etc", "examples", "static", "**/*.d.ts", "cypress"],
|
|
"compilerOptions": {
|
|
/* Module resolution */
|
|
"target": "esnext",
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
/* Code generation */
|
|
"outDir": "./out/dist",
|
|
"typeRoots": ["./node_modules/@types"],
|
|
"types": ["mocha", "chai"],
|
|
/* Other options */
|
|
"allowJs": true
|
|
}
|
|
}
|