Initial Commit

This commit is contained in:
Lucàs
2024-09-20 11:48:16 +02:00
parent 58b1089fa7
commit b8d5751374
5 changed files with 869 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{
"compilerOptions": {
/* Language and Environment */
"target": "es2016",
"lib": ["es6"],
/* Modules */
"module": "commonjs",
"rootDir": "src",
"resolveJsonModule": true,
/* JavaScript Support */
"allowJs": true,
"outDir": "build",
/* Interop Constraints */
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": true,
"noImplicitAny": true,
/* Completeness */
"skipLibCheck": true
}
}