aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.settings.json
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-08-15 08:35:57 +0000
committerLibravatar GitHub <noreply@github.com>2021-08-15 14:05:57 +0530
commitab213dd0a1e51699aae492f8b546e4a311fcb97d (patch)
tree2dbd59ee85db4899f78f660432190a2df356e8e8 /tsconfig.settings.json
parentfix: Fixed the 'Changelog' menu item to point to the correct branch (diff)
downloadferdium-app-ab213dd0a1e51699aae492f8b546e4a311fcb97d.tar.gz
ferdium-app-ab213dd0a1e51699aae492f8b546e4a311fcb97d.tar.zst
ferdium-app-ab213dd0a1e51699aae492f8b546e4a311fcb97d.zip
Initial plumbing and conversion of a simple javascript to typescript (#1790)
* initial conversion of a simple script * Moved some of the 'gulp' and related npm modules from being runtime dependencies to development dependencies.
Diffstat (limited to 'tsconfig.settings.json')
-rw-r--r--tsconfig.settings.json6
1 files changed, 2 insertions, 4 deletions
diff --git a/tsconfig.settings.json b/tsconfig.settings.json
index 67153089e..59e520710 100644
--- a/tsconfig.settings.json
+++ b/tsconfig.settings.json
@@ -6,6 +6,8 @@
6 "lib": ["es2015", "es2017", "dom"], 6 "lib": ["es2015", "es2017", "dom"],
7 "jsx": "react", 7 "jsx": "react",
8 "typeRoots": ["node_modules/@types"], 8 "typeRoots": ["node_modules/@types"],
9 "moduleResolution": "node",
10 "types": ["node"],
9 "sourceMap": true, 11 "sourceMap": true,
10 "noImplicitAny": false, // TODO: Need to switch 12 "noImplicitAny": false, // TODO: Need to switch
11 "allowSyntheticDefaultImports": true, 13 "allowSyntheticDefaultImports": true,
@@ -21,9 +23,5 @@
21 "noImplicitReturns": true, 23 "noImplicitReturns": true,
22 "noImplicitThis": true, 24 "noImplicitThis": true,
23 "preserveConstEnums": true, 25 "preserveConstEnums": true,
24 // "exclude": [
25 // "node_modules",
26 // "**/*.spec.ts"
27 // ]
28 } 26 }
29} 27}