Files
ontime/apps/server/tsconfig.json
T
2024-02-03 23:17:36 +01:00

19 lines
381 B
JSON

{
"compilerOptions": {
"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",
],
}