forked from inrupt/solid-client-authn-js
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.build.json
More file actions
36 lines (35 loc) · 1.04 KB
/
Copy pathtsconfig.build.json
File metadata and controls
36 lines (35 loc) · 1.04 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
{
"include": ["packages/*/src/**/*.ts", "./jest.setup.ts", "./jest.config.ts"],
"compilerOptions": {
"module": "commonjs",
"strict": true,
"declaration": true,
"declarationMap": true,
"noImplicitAny": true,
"esModuleInterop": true,
"target": "es2022",
"sourceMap": true,
"lib": ["es2022", "dom"],
"types": ["node", "firefox-webext-browser"],
"moduleResolution": "node",
"resolveJsonModule": true,
"outDir": "./dist",
// This is required to transform native ESM from our dependencies using ts-jest.
"allowJs": true,
"ignoreDeprecations": "6.0"
},
"exclude": ["node_modules", "dist"],
// We don't provide an 'out' value here, each sub-package should provide its
// own.
"typedocOptions": {
"exclude": [
// Re-exported functions are already documented in their own modules:
"./packages/*/src/index.ts",
"./packages/*/src/index.browser.ts"
],
"excludeNotDocumented": false,
"excludePrivate": true,
"excludeInternal": true,
"readme": "none"
}
}