rojects/tsconfig.json

17 lines
342 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020"],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
2026-07-17 11:47:43 +00:00
"outDir": "dist",
"baseUrl": ".",
"paths": {
"auth-connector/*": ["./source/auth-connector/source/*"]
}
},
"include": ["source/server/**/*"]
}