aboutsummaryrefslogtreecommitdiff
path: root/viewer/tsconfig.json
diff options
context:
space:
mode:
authorZero~Informatique2019-12-20 17:47:04 +0100
committerZero~Informatique2019-12-20 23:22:56 +0100
commit7ae68f079ddfb74c9a1b17c4f30dfe4c258d4a9f (patch)
treecb5e30534d9e564c311d626bba7e8d9ec0ea0f60 /viewer/tsconfig.json
parentc9264b0a0a7e1cb92ef7d9a391cee2c94376cff3 (diff)
downloadldgallery-7ae68f079ddfb74c9a1b17c4f30dfe4c258d4a9f.tar.gz
Viewer project foundations
Diffstat (limited to 'viewer/tsconfig.json')
-rw-r--r--viewer/tsconfig.json41
1 files changed, 41 insertions, 0 deletions
diff --git a/viewer/tsconfig.json b/viewer/tsconfig.json
new file mode 100644
index 0000000..061c46c
--- /dev/null
+++ b/viewer/tsconfig.json
@@ -0,0 +1,41 @@
1{
2 "compilerOptions": {
3 "target": "esnext",
4 "module": "esnext",
5 "strict": true,
6 "jsx": "preserve",
7 "importHelpers": true,
8 "moduleResolution": "node",
9 "experimentalDecorators": true,
10 "esModuleInterop": true,
11 "allowSyntheticDefaultImports": true,
12 "sourceMap": true,
13 "baseUrl": ".",
14 "types": [
15 "webpack-env",
16 "webpack",
17 "webpack-env"
18 ],
19 "paths": {
20 "@/*": [
21 "src/*"
22 ]
23 },
24 "lib": [
25 "esnext",
26 "dom",
27 "dom.iterable",
28 "scripthost"
29 ]
30 },
31 "include": [
32 "src/**/*.ts",
33 "src/**/*.tsx",
34 "src/**/*.vue",
35 "tests/**/*.ts",
36 "tests/**/*.tsx"
37 ],
38 "exclude": [
39 "node_modules"
40 ]
41} \ No newline at end of file