diff options
author | eug-vs <eug-vs@keemail.me> | 2020-11-13 20:11:33 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-11-13 20:17:51 +0300 |
commit | 5847198e2382c6bf3fedbca03ad2fcf71243290a (patch) | |
tree | d3949f67c095da6aa6bab4bd27e7acf312cd8d83 /tsconfig.json | |
download | famcs-kit-5847198e2382c6bf3fedbca03ad2fcf71243290a.tar.gz |
feat: initial commit
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..7b1d3c6 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "allowJs": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noFallthroughCasesInSwitch": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react" + }, + "include": [ + "src" + ] +} |