-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocgen.json
27 lines (27 loc) · 792 Bytes
/
docgen.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
{
"$schema": "./node_modules/@effect/docgen/schema.json",
"exclude": [
"src/internal/**/*.ts",
"src/generated/**/*.ts",
"src/schemas/**/*.ts",
"src/blobs/**/*.ts",
"src/archive/**/*.ts",
"src/convey/**/*.ts"
],
"projectHomepage": "https://github.com/leonitousconforti/the-moby-effect",
"examplesCompilerOptions": {
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"exactOptionalPropertyTypes": true,
"moduleResolution": "Bundler",
"module": "ES2022",
"target": "ES2022",
"lib": ["ES2022"],
"baseUrl": "../../",
"paths": {
"the-moby-effect": ["./src/index.js"],
"the-moby-effect/*": ["./src/*.js"]
}
}
}