Add tsconfig.json

This commit is contained in:
Vasili Karaev 2022-10-07 09:53:23 +03:00
parent 194417593f
commit 345f147533
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"
]
}
}