mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 09:23:52 -05:00
* Make it possible to share types in /types directory between front and backend * Add new tsconfig files to gh-dist-files
15 lines
342 B
JSON
15 lines
342 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"include": ["lib/**/*"],
|
|
"exclude": ["static/**/*"],
|
|
"compilerOptions": {
|
|
/* Module resolution */
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
/* Code generation */
|
|
"outDir": "./out/app",
|
|
"typeRoots": ["./typings", "./node_modules/@types"]
|
|
}
|
|
}
|