Added the default typescript configuration file

This commit is contained in:
2022-09-06 19:56:30 +02:00
parent 4412c90db9
commit 95f8bd7fff
2 changed files with 11 additions and 1 deletions

10
tsconfig.json Normal file
View File

@ -0,0 +1,10 @@
{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}