postman/tsconfig.json

16 lines
262 B
JSON
Raw Normal View History

2024-07-10 16:21:15 +02:00
{
"compilerOptions": {
"strict": true,
"module": "ESNEXT",
"target": "ES2020",
"esModuleInterop": true,
"moduleResolution": "node",
"baseUrl": "src/",
"paths": { "*": ["*"] },
"outDir": "dist",
"declaration": true,
}
}