diff options
author | 2022-09-06 19:22:23 +0200 | |
---|---|---|
committer | 2022-09-06 19:22:23 +0200 | |
commit | 518d381447b61cd4b47c0102d760e4e4260f7b9f (patch) | |
tree | d3f50a52b7637a0a54342143b3153f36fd376858 /tsconfig.json | |
parent | Initial commit (diff) |
Initial commit
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..80357ec --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "baseUrl": "src", + "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"] +} |