aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/standalone/player/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/standalone/player/tsconfig.json')
-rw-r--r--client/src/standalone/player/tsconfig.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/client/src/standalone/player/tsconfig.json b/client/src/standalone/player/tsconfig.json
new file mode 100644
index 000000000..eecc63dfb
--- /dev/null
+++ b/client/src/standalone/player/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}