diff options
author | Eugene Sokolov <eug-vs@keemail.me> | 2020-02-03 13:30:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-03 13:30:27 +0000 |
commit | 989173ea6e39ac27893f3cc5efba043ebda9df67 (patch) | |
tree | 4281d872404091155d1ddeaa5727bc5fb51fdd8a /tsconfig.json | |
parent | 53143dfc36e66e285256706a8ec837e2bd2f8427 (diff) | |
parent | 5bcc9b41e59bf7215abf395ea899cdbc2d06db9a (diff) | |
download | react-benzin-989173ea6e39ac27893f3cc5efba043ebda9df67.tar.gz |
Merge pull request #2 from eug-vs/typescript
Add Typescript support
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" + ] +} |