diff options
author | eug-vs <eug-vs@keemail.me> | 2020-03-21 14:17:58 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-03-21 14:17:58 +0300 |
commit | 550f00b93c03a9ad98ef9bb1197c0fbfd5b1e572 (patch) | |
tree | 28408ad5330ae98da60fea9778ebdf10a28893d1 /tsconfig.json | |
parent | 2d976f7d3468ba5f49bb54351b47b3cad494d7ba (diff) | |
download | chrono-cube-ui-550f00b93c03a9ad98ef9bb1197c0fbfd5b1e572.tar.gz |
chore!: migrate index.js -> index.tsx
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 25 |
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" + ] +} |