diff options
author | Eug-VS <eug-vs@keemail.me> | 2020-01-28 17:00:00 +0300 |
---|---|---|
committer | Eug-VS <eug-vs@keemail.me> | 2020-02-03 14:29:42 +0300 |
commit | bf98ff90a7ad9fad79f75a2215108dcfdaa02ed2 (patch) | |
tree | 54b2447ec501508f9da89cde2aa5d036010d90e9 /tsconfig.json | |
parent | 53143dfc36e66e285256706a8ec837e2bd2f8427 (diff) | |
download | react-benzin-bf98ff90a7ad9fad79f75a2215108dcfdaa02ed2.tar.gz |
feat!: install Typescript, migrate Window to .tsx
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..f51313b --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": [ + "es6", + "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" + ] +} |