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 | b8fa3e8c734a46918118afe7976f248cc883f675 (patch) | |
tree | 0ebf8fd10b1c690602da14d4dd626cd04a9ff748 /tsconfig.json | |
parent | 8b03e2ce1a2098261de2f729f660b1ae2a320b65 (diff) | |
download | PeerTube-b8fa3e8c734a46918118afe7976f248cc883f675.tar.gz PeerTube-b8fa3e8c734a46918118afe7976f248cc883f675.tar.zst PeerTube-b8fa3e8c734a46918118afe7976f248cc883f675.zip |
refactor(types): create dedicated folder for types package src
fix guide examples and add types package readme
refactor(tsconfig): move back base tsconfig to base directory
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json index 8f1d5b6fb..cb7937f99 100644 --- a/tsconfig.json +++ b/tsconfig.json | |||
@@ -6,7 +6,11 @@ | |||
6 | "paths": { | 6 | "paths": { |
7 | "@server/*": [ "server/*" ], | 7 | "@server/*": [ "server/*" ], |
8 | "@shared/*": [ "shared/*" ] | 8 | "@shared/*": [ "shared/*" ] |
9 | } | 9 | }, |
10 | "typeRoots": [ | ||
11 | "server/typings", | ||
12 | "node_modules/@types" | ||
13 | ] | ||
10 | }, | 14 | }, |
11 | "references": [ | 15 | "references": [ |
12 | { "path": "./shared" }, | 16 | { "path": "./shared" }, |