aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-03-21 14:17:58 +0300
committereug-vs <eug-vs@keemail.me>2020-03-21 14:17:58 +0300
commit550f00b93c03a9ad98ef9bb1197c0fbfd5b1e572 (patch)
tree28408ad5330ae98da60fea9778ebdf10a28893d1 /tsconfig.json
parent2d976f7d3468ba5f49bb54351b47b3cad494d7ba (diff)
downloadchrono-cube-ui-550f00b93c03a9ad98ef9bb1197c0fbfd5b1e572.tar.gz
chore!: migrate index.js -> index.tsx
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"
+ ]
+}