hrms-edm/Services/server/tsconfig.json

26 lines
365 B
JSON
Raw Normal View History

2023-11-17 09:03:31 +07:00
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"rootDir": "src",
"outDir": "dist",
"strict": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"skipLibCheck": true
},
"typedocOptions": {
"entryPoints": [
"src/**/*.ts"
],
"out": "typedoc"
2023-11-17 09:03:31 +07:00
}
2023-11-17 09:03:31 +07:00
}