identity/identity-api/tsconfig.json

13 lines
312 B
JSON
Raw Normal View History

2024-06-30 16:04:54 +00:00
{
"compilerOptions": {
"module": "NodeNext",
"target": "ES2021",
"moduleResolution": "NodeNext",
"sourceMap": true,
"outDir": "dist",
"types": ["node"],
"skipLibCheck": true
},
"include": ["./src/**/*"],
"exclude": ["./node_modules/**/*"]
}