aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/tsconfig.json
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-09-03 11:26:19 +0200
committerChocobozzz <me@florianbigard.com>2018-09-03 11:26:19 +0200
commitf2e05ffea78255dd431dbddfffff89ac9ff69bdc (patch)
tree7dd76d6b374ea6d5c128729693c5ef07d77b89e2 /client/tsconfig.json
parentd02911fadd7548b7bfbc2a1294b50930e27041cb (diff)
downloadPeerTube-f2e05ffea78255dd431dbddfffff89ac9ff69bdc.tar.gz
PeerTube-f2e05ffea78255dd431dbddfffff89ac9ff69bdc.tar.zst
PeerTube-f2e05ffea78255dd431dbddfffff89ac9ff69bdc.zip
Try to fix embed webpack build
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r--client/tsconfig.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json
index 6ac5e6a9e..f1d97110d 100644
--- a/client/tsconfig.json
+++ b/client/tsconfig.json
@@ -17,6 +17,9 @@
17 "es2015", 17 "es2015",
18 "dom" 18 "dom"
19 ], 19 ],
20 "types": [
21 "jasmine"
22 ],
20 "baseUrl": "src", 23 "baseUrl": "src",
21 "paths": { 24 "paths": {
22 "@app/*": [ "app/*" ], 25 "@app/*": [ "app/*" ],
@@ -33,6 +36,7 @@
33 "../node_modules", 36 "../node_modules",
34 "node_modules", 37 "node_modules",
35 "dist", 38 "dist",
36 "../server" 39 "../server",
40 "src/**/*.spec.ts"
37 ] 41 ]
38} 42}