diff options
author | Chocobozzz <me@florianbigard.com> | 2023-07-10 16:08:53 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-07-10 16:08:53 +0200 |
commit | 8953f055c86ca74f145d7ac5ac93bb6104d73af9 (patch) | |
tree | 4fd67ba6c2ba32f45bcc92e931cffe2fa57c12a4 /client/src/standalone/embed-player-api/tsconfig.json | |
parent | a1bd2b77d99cec5c27d38501f5f12f9dc339de17 (diff) | |
download | PeerTube-8953f055c86ca74f145d7ac5ac93bb6104d73af9.tar.gz PeerTube-8953f055c86ca74f145d7ac5ac93bb6104d73af9.tar.zst PeerTube-8953f055c86ca74f145d7ac5ac93bb6104d73af9.zip |
Rename player embed api
Diffstat (limited to 'client/src/standalone/embed-player-api/tsconfig.json')
-rw-r--r-- | client/src/standalone/embed-player-api/tsconfig.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/client/src/standalone/embed-player-api/tsconfig.json b/client/src/standalone/embed-player-api/tsconfig.json new file mode 100644 index 000000000..eecc63dfb --- /dev/null +++ b/client/src/standalone/embed-player-api/tsconfig.json | |||
@@ -0,0 +1,19 @@ | |||
1 | { | ||
2 | "compilerOptions": { | ||
3 | "module": "commonjs", | ||
4 | "removeComments": true, | ||
5 | "sourceMap": false, | ||
6 | "typeRoots": [ | ||
7 | "../../../node_modules/@types" | ||
8 | ], | ||
9 | "outDir": "./dist", | ||
10 | "declaration": true, | ||
11 | "target": "es5", | ||
12 | "types": [], | ||
13 | "lib": [ | ||
14 | "es2018", | ||
15 | "dom" | ||
16 | ] | ||
17 | }, | ||
18 | "files": [ "./player.ts" ] | ||
19 | } | ||