-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (36 loc) · 1.17 KB
/
Copy pathtsconfig.json
File metadata and controls
36 lines (36 loc) · 1.17 KB
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
34
35
36
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"outDir": "dist",
"noEmit": true
},
"files": [],
"references": [
{ "path": "internal/test-utils/tsconfig.build.json" },
{ "path": "internal/clinic/tsconfig.build.json" },
{ "path": "packages/drizzle-core/tsconfig.build.json" },
{ "path": "packages/drizzle-undici/tsconfig.build.json" },
{ "path": "packages/drizzle-logging-interceptor/tsconfig.build.json" },
{ "path": "packages/drizzle-rxjs/tsconfig.build.json" },
{ "path": "packages/drizzle-response-mapper/tsconfig.build.json" },
{ "path": "packages/drizzle-opossum-circuit-breaker/tsconfig.build.json" },
{ "path": "_benchmarks/tsconfig.build.json" },
{ "path": "internal/test/tsconfig.build.json" },
{ "path": "_examples/typescript/tsconfig.build.json" },
{ "path": "_examples/react/tsconfig.build.json" }
],
"exclude": [
"**/node_modules",
"**/dist",
".changeset",
".github",
"assets",
"coverage",
"_examples/javascript",
"_examples/nodejs-es-modules",
"_examples/nestjs",
"vitest.config.ts"
]
}