aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-06-06 18:46:13 +0300
committereug-vs <eug-vs@keemail.me>2020-06-06 18:53:43 +0300
commitbdf533b43a6b9fab5420c86716c9611ce857d761 (patch)
treef0bf7f19859b646a29a173452e0fc31633e6edc7 /tsconfig.json
downloadwhich-ui-bdf533b43a6b9fab5420c86716c9611ce857d761.tar.gz
feat: initial ts react-app
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..f2850b7
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,25 @@
+{
+ "compilerOptions": {
+ "target": "es5",
+ "lib": [
+ "dom",
+ "dom.iterable",
+ "esnext"
+ ],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "esModuleInterop": true,
+ "allowSyntheticDefaultImports": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": true,
+ "jsx": "react"
+ },
+ "include": [
+ "src"
+ ]
+}