Created the tsconfig.json

This commit is contained in:
Mathias Wagner 2023-01-14 17:15:37 +01:00
parent 3679942d76
commit 52318f6c40

12
tsconfig.json Normal file
View File

@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"rootDir": "src",
"outDir": "dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
}
}