-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 933 Bytes
/
Copy pathtsconfig.json
File metadata and controls
28 lines (28 loc) · 933 Bytes
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
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"noImplicitOverride": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"types": ["node", "bun-types"],
"baseUrl": ".",
"paths": {
"@mqttkit/core": ["packages/core/src/index.ts"],
"@mqttkit/core/testing": ["packages/core/src/testing.ts"],
"@mqttkit/aedes": ["packages/aedes/src/index.ts"],
"@mqttkit/asyncapi": ["packages/asyncapi/src/index.ts"],
"@mqttkit/typebox": ["packages/typebox/src/index.ts"],
"@mqttkit/zod": ["packages/zod/src/index.ts"]
}
},
"include": ["packages/**/*.ts", "examples/**/*.ts", "vitest.config.ts"],
"exclude": ["**/dist/**", "**/node_modules/**"]
}