aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/tsconfig.base.json
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-08-17 14:01:51 +0200
committerChocobozzz <me@florianbigard.com>2021-08-17 14:06:56 +0200
commit1d4591fd9c724c9409da31612f6d8c008f1cb5e4 (patch)
treeedf37dad3e3424d6b7a0c5149f47da88124e0286 /client/tsconfig.base.json
parent1378c0d343028f3d40d7d795422684ab9e6a1599 (diff)
downloadPeerTube-1d4591fd9c724c9409da31612f6d8c008f1cb5e4.tar.gz
PeerTube-1d4591fd9c724c9409da31612f6d8c008f1cb5e4.tar.zst
PeerTube-1d4591fd9c724c9409da31612f6d8c008f1cb5e4.zip
Remove solution style ts config
Diffstat (limited to 'client/tsconfig.base.json')
-rw-r--r--client/tsconfig.base.json49
1 files changed, 0 insertions, 49 deletions
diff --git a/client/tsconfig.base.json b/client/tsconfig.base.json
deleted file mode 100644
index fd297e60a..000000000
--- a/client/tsconfig.base.json
+++ /dev/null
@@ -1,49 +0,0 @@
1{
2 "compileOnSave": false,
3 "compilerOptions": {
4 "downlevelIteration": true,
5 "outDir": "./dist/out-tsc",
6 "sourceMap": true,
7 "declaration": false,
8 "moduleResolution": "node",
9 "module": "esnext",
10 "experimentalDecorators": true,
11 "noImplicitAny": true,
12 "noImplicitThis": true,
13 "suppressImplicitAnyIndexErrors":true,
14 "alwaysStrict": true,
15 "importHelpers": true,
16 "strictBindCallApply": true,
17 "target": "es2015",
18 "typeRoots": [
19 "node_modules/@types"
20 ],
21 "lib": [
22 "es2018",
23 "dom"
24 ],
25 "baseUrl": "./",
26 "paths": {
27 "hls.js": [ "node_modules/hls.js/dist/hls.light" ],
28 "video.js": [ "node_modules/video.js/core" ],
29 "@app/*": [ "src/app/*" ],
30 "@shared/models/*": [ "../shared/models/*" ],
31 "@shared/models": [ "../shared/models" ],
32 "@shared/core-utils": [ "../shared/core-utils" ],
33 "@shared/core-utils/*": [ "../shared/core-utils/*" ],
34 "@root-helpers/*": [ "src/root-helpers/*" ],
35 "fs": [ "src/shims/noop.ts" ],
36 "http": [ "src/shims/http.ts" ],
37 "https": [ "src/shims/https.ts" ],
38 "path": [ "src/shims/path.ts" ],
39 "stream": [ "src/shims/stream.ts" ],
40 "crypto": [ "src/shims/noop.ts" ]
41 }
42 },
43 "angularCompilerOptions": {
44 "strictInjectionParameters": true,
45 "fullTemplateTypeCheck": true,
46 "strictTemplates": true,
47 "enableI18nLegacyMessageIdFormat": false
48 }
49}