diff options
author | lutangar <johan.dufour@gmail.com> | 2021-11-09 13:49:08 +0100 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2021-12-16 10:08:43 +0100 |
commit | 8b03e2ce1a2098261de2f729f660b1ae2a320b65 (patch) | |
tree | ca4770cf86c9c54814dbb62bfc95ef38661646b2 /tsconfig.json | |
parent | 06aad80165d09a8863ab8103149a8ff518b10641 (diff) | |
download | PeerTube-8b03e2ce1a2098261de2f729f660b1ae2a320b65.tar.gz PeerTube-8b03e2ce1a2098261de2f729f660b1ae2a320b65.tar.zst PeerTube-8b03e2ce1a2098261de2f729f660b1ae2a320b65.zip |
feat(types): create peertube-types package
Create dedicated Typescript "types" configuration file for each "projects".
Create a types folder which includes every useful ts definition:
- client
- server
- shared
Add tooling to create a proper package, extract dependencies, etc...
Add CI Github task.
refactor(types): publish types package in release script
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json index a14a97dfb..8f1d5b6fb 100644 --- a/tsconfig.json +++ b/tsconfig.json | |||
@@ -1,5 +1,13 @@ | |||
1 | { | 1 | { |
2 | "extends": "./tsconfig.base.json", | 2 | "extends": "./tsconfig.base.json", |
3 | "compilerOptions": { | ||
4 | "outDir": "./dist/", | ||
5 | "baseUrl": "./", | ||
6 | "paths": { | ||
7 | "@server/*": [ "server/*" ], | ||
8 | "@shared/*": [ "shared/*" ] | ||
9 | } | ||
10 | }, | ||
3 | "references": [ | 11 | "references": [ |
4 | { "path": "./shared" }, | 12 | { "path": "./shared" }, |
5 | { "path": "./server" }, | 13 | { "path": "./server" }, |