Add tsconfig.json (#21)

This commit is contained in:
TonCherAmi 2022-10-07 10:19:58 +03:00 committed by GitHub
parent 194417593f
commit 2032c409fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 0 deletions

17
tsconfig.json Normal file
View File

@ -0,0 +1,17 @@
{
"compilerOptions": {
"noEmit": true,
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"experimentalDecorators": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"lib": [
"dom",
"dom.iterable",
"esnext"
]
}
}