diff options
author | eug-vs <eug-vs@keemail.me> | 2020-06-06 18:46:13 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-06-06 18:53:43 +0300 |
commit | bdf533b43a6b9fab5420c86716c9611ce857d761 (patch) | |
tree | f0bf7f19859b646a29a173452e0fc31633e6edc7 /tsconfig.json | |
download | which-ui-bdf533b43a6b9fab5420c86716c9611ce857d761.tar.gz |
feat: initial ts react-app
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" + ] +} |