This website requires JavaScript.
Explore
Help
Sign In
forks
/
peertube
Watch
1
Star
0
Fork
You've already forked peertube
0
Code
Releases
Activity
0f7195fa40
peertube
/
shared
/
tsconfig.json
7 lines
100 B
JSON
Raw
Normal View
History
Unescape
Escape
chore(refactor): remove shared folder dependencies to the server Many files from the `shared` folder were importing files from the `server` folder. When attempting to use Typescript project references to describe dependencies, it highlighted a circular dependency beetween `shared` <-> `server`. The Typescript project forbid such usages. Using project references greatly improve performance by rebuilding only the updated project and not all source files. > see https://www.typescriptlang.org/docs/handbook/project-references.html
2021-11-02 14:11:20 -04:00
{
"extends"
:
"../tsconfig.base.json"
,
"compilerOptions"
:
{
Support sourceMaps
2021-12-14 07:20:38 -05:00
"outDir"
:
"../dist/shared"
chore(refactor): remove shared folder dependencies to the server Many files from the `shared` folder were importing files from the `server` folder. When attempting to use Typescript project references to describe dependencies, it highlighted a circular dependency beetween `shared` <-> `server`. The Typescript project forbid such usages. Using project references greatly improve performance by rebuilding only the updated project and not all source files. > see https://www.typescriptlang.org/docs/handbook/project-references.html
2021-11-02 14:11:20 -04:00
}
}
Copy permalink