-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathtsconfig.json
33 lines (33 loc) · 1.22 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"compilerOptions": {
"target": "ES2023",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2023"],
"baseUrl": ".",
"paths": {
"fastify-decorators": ["dist/fastify-decorators"],
"fastify-decorators/*": ["dist/fastify-decorators/*"]
}
},
"references": [
{ "path": "lib/tsconfig.lib.json" },
{ "path": "lib/tsconfig.spec.json" },
{ "path": "examples/controllers/tsconfig.app.json" },
{ "path": "examples/controllers/tsconfig.spec.json" },
{ "path": "examples/request-handlers/tsconfig.app.json" },
{ "path": "examples/request-handlers/tsconfig.spec.json" },
{ "path": "examples/swagger/tsconfig.app.json" },
{ "path": "examples/swagger/tsconfig.spec.json" },
{ "path": "examples/typeorm/tsconfig.app.json" },
{ "path": "examples/typeorm/tsconfig.spec.json" },
{ "path": "plugins/sequelize/tsconfig.lib.json" },
{ "path": "plugins/sequelize/tsconfig.spec.json" },
{ "path": "plugins/simple-di/tsconfig.lib.json" },
{ "path": "plugins/simple-di/tsconfig.spec.json" },
{ "path": "plugins/typeorm/tsconfig.lib.json" },
{ "path": "plugins/typeorm/tsconfig.spec.json" }
],
"exclude": ["node_modules", "dist"],
"files": []
}