employee_clock/tsconfig.json
2023-06-28 13:48:40 +03:00

14 lines
309 B
JSON

{
"exclude": ["__tests__"],
"compilerOptions": {
"module": "CommonJS",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"target": "es2022",
"moduleResolution": "node",
"sourceMap": true,
"outDir": "./dist",
"rootDir": "./src",
"noImplicitAny": true,
}
}