Files
ontime/apps/server/tsconfig.json
2025-06-09 14:12:52 +02:00

20 lines
401 B
JSON

{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "Node16",
"moduleResolution": "Node16",
"allowSyntheticDefaultImports": true,
"allowJs": true,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["vitest/globals"],
"outDir": "dist",
"experimentalDecorators": true,
},
"include": [
"src/**/*.ts",
"src/**/*.js",
],
}