Files
Compo-Service-Log-Project/tsconfig.json
T
2024-09-20 22:08:00 +02:00

23 lines
504 B
JSON

{
"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
}
}