mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 06:34:21 +00:00
tsconfig: Add shared reference
This commit is contained in:
parent
e1ae79cb9c
commit
21d1eea6b8
1 changed files with 3 additions and 6 deletions
|
@ -6,12 +6,9 @@
|
|||
] /* If no 'files' or 'include' property is present in a tsconfig.json, the compiler defaults to including all files in the containing directory and subdirectories except those specified by 'exclude'. When a 'files' property is specified, only those files and those specified by 'include' are included. */,
|
||||
// "exclude": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./client" /* Path to referenced tsconfig or to folder containing tsconfig. */
|
||||
},
|
||||
{
|
||||
"path": "./server" /* Path to referenced tsconfig or to folder containing tsconfig. */
|
||||
}
|
||||
{"path": "./client"},
|
||||
{"path": "./server"},
|
||||
{"path": "./shared"}
|
||||
] /* Referenced projects. Requires TypeScript version 3.0 or later. */,
|
||||
"compilerOptions": {
|
||||
// TODO: Remove eventually
|
||||
|
|
Loading…
Reference in a new issue