Files
compiler-explorer/tsconfig.backend.json
Mats Larsen da1a3ab7dc Make it possible to share types in /types directory between front and backend (#3211)
* Make it possible to share types in /types directory between front and backend

* Add new tsconfig files to gh-dist-files
2021-12-28 15:53:34 +01:00

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"]
}
}