Files
Snacks-Analytics-backend/tsconfig.json
AlexLoup 15fde72f08 Package, Server, Routes
Adding the base of the server program
2026-06-14 19:14:35 +02:00

14 lines
314 B
JSON

{
"compilerOptions": {
"target": "es2022",
"module": "commonjs",
"rootDir": "./src",
"outDir": "./dist",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"include": ["src/**/*"],
"exclude": ["dist", "node_modules"]
}