Files
zitadel/packages/zitadel-server/tsconfig.json

15 lines
277 B
JSON
Raw Normal View History

2023-04-03 11:45:27 +02:00
{
2023-04-13 13:26:02 +02:00
"extends": "@zitadel/tsconfig/node14.json",
2023-04-20 14:26:55 +02:00
"include": ["src/**/*.ts"],
2023-04-04 15:35:41 +02:00
"compilerOptions": {
2023-04-20 14:26:55 +02:00
"baseUrl": ".",
2023-04-20 14:39:51 +02:00
"rootDir": "src",
2023-04-20 14:26:55 +02:00
"paths": {
2023-04-20 14:39:51 +02:00
"#": ["."],
"*": ["./*"],
"#/*": ["./*"]
2023-04-20 14:26:55 +02:00
}
2023-04-04 15:35:41 +02:00
},
2023-04-03 11:45:27 +02:00
"exclude": ["dist", "build", "node_modules"]
}