aboutsummaryrefslogtreecommitdiffhomepage
path: root/tsconfig.json
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2017-12-12 17:53:50 +0100
committerChocobozzz <me@florianbigard.com>2017-12-13 16:50:33 +0100
commit3fd3ab2d34d512b160a5e6084d7609be7b4f4452 (patch)
treee5ca358287fca6ecacce83defcf23af1e8e9f419 /tsconfig.json
parentc893d4514e6ecbf282c7985fe5f82b8acd8a1137 (diff)
downloadPeerTube-3fd3ab2d34d512b160a5e6084d7609be7b4f4452.tar.gz
PeerTube-3fd3ab2d34d512b160a5e6084d7609be7b4f4452.tar.zst
PeerTube-3fd3ab2d34d512b160a5e6084d7609be7b4f4452.zip
Move models to typescript-sequelize
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json8
1 files changed, 6 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json
index be910b309..71674e165 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,13 +1,17 @@
1{ 1{
2 "compilerOptions": { 2 "compilerOptions": {
3 "module": "commonjs", 3 "module": "commonjs",
4 "target": "es5", 4 "target": "es2015",
5 "noImplicitAny": false, 5 "noImplicitAny": false,
6 "sourceMap": false, 6 "sourceMap": false,
7 "experimentalDecorators": true,
8 "emitDecoratorMetadata": true,
7 "outDir": "./dist", 9 "outDir": "./dist",
8 "lib": [ 10 "lib": [
9 "dom", 11 "dom",
10 "es2015" 12 "es2015",
13 "es2016",
14 "es2017"
11 ], 15 ],
12 "types": [ 16 "types": [
13 "node" 17 "node"