summaryrefslogtreecommitdiff
path: root/frontend/tsconfig.json
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2019-05-02 21:17:11 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2019-05-03 00:19:26 +0200
commit366cf95249c9cd6df5d7b15b44acbe4f324bbc85 (patch)
treebd717a939447ff7d2f39e983eeb98537ae7770f6 /frontend/tsconfig.json
parentRemove unused reselect dependency (diff)
downloadseven-wonders-366cf95249c9cd6df5d7b15b44acbe4f324bbc85.tar.gz
seven-wonders-366cf95249c9cd6df5d7b15b44acbe4f324bbc85.tar.bz2
seven-wonders-366cf95249c9cd6df5d7b15b44acbe4f324bbc85.zip
Add TypeScript support
Diffstat (limited to 'frontend/tsconfig.json')
-rw-r--r--frontend/tsconfig.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json
new file mode 100644
index 00000000..0dd89b81
--- /dev/null
+++ b/frontend/tsconfig.json
@@ -0,0 +1,25 @@
+{
+ "compilerOptions": {
+ "target": "es5",
+ "lib": [
+ "dom",
+ "dom.iterable",
+ "esnext"
+ ],
+ "allowJs": false,
+ "skipLibCheck": true,
+ "esModuleInterop": true,
+ "allowSyntheticDefaultImports": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": true,
+ "jsx": "preserve"
+ },
+ "include": [
+ "src"
+ ]
+}
bgstack15