1 | {
|
2 | "compilerOptions": {
|
3 | "target": "esnext",
|
4 | "moduleResolution": "node",
|
5 | "allowJs": true,
|
6 | "noEmit": true,
|
7 | "strict": true,
|
8 | "esModuleInterop": true,
|
9 | "allowSyntheticDefaultImports": true,
|
10 | "lib": [ "esnext" ],
|
11 | "skipLibCheck": true,
|
12 | "resolveJsonModule": true,
|
13 | "exactOptionalPropertyTypes": true,
|
14 | "verbatimModuleSyntax": true
|
15 | },
|
16 |
|
17 | "include": [
|
18 | "types/*.d.ts",
|
19 | "src/**/*.ts",
|
20 | "test/**/*.ts",
|
21 | "test/**/*.js",
|
22 | ],
|
23 |
|
24 | "typedocOptions": {
|
25 | "name": "Tedious",
|
26 | "out": "./docs",
|
27 | "entryPoints": ["./src/tedious.ts"]
|
28 | }
|
29 | }
|