diff options
| author | Yuval Adam <_@yuv.al> | 2022-11-29 09:19:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-29 09:19:07 +0200 |
| commit | 50d9d173d1c2cf22efb960fd122ca64201f34bf5 (patch) | |
| tree | 8e54dc74a491c564575a47f85f79ae1d41c03059 /tsconfig.json | |
| parent | 3c0fce7319f4e4ae076527eb98e6164210bdb34c (diff) | |
| parent | 8507df99e5a3a77fa2a2f1c716e2eefeee92f11b (diff) | |
Merge pull request #30 from yuvadm/v6v6.0.0
Major v6 upgrade
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..a273b0c --- /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-jsx" + }, + "include": [ + "src" + ] +} |
