-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
41 lines (41 loc) · 1.2 KB
/
tsconfig.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"include": ["src/**/*.ts", "test/**/*.ts"],
"exclude": ["node_modules"],
"compilerOptions": {
"rootDir": ".",
"baseUrl": "./src",
"moduleResolution": "node",
"module": "ESNext",
"outDir": "dist",
"declaration": true,
"declarationDir": "dist",
"noEmitOnError": true,
"resolveJsonModule": true,
"target": "ESNext",
"allowSyntheticDefaultImports": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"typeRoots": ["./node_modules/@types", "./dist/index.d.ts"],
"paths": {
"@reuters-graphics/paparazzo": ["./index.ts"]
}
},
"typedocOptions": {
"entryPoints": ["src/index.ts"],
"out": "docs",
"cleanOutputDir": true,
"darkHighlightTheme": "github-dark",
"lightHighlightTheme": "github-light",
"sort": ["required-first"],
"disableSources": true,
"plugin": ["typedoc-plugin-mermaid"],
"titleLink": "https://reuters-graphics.github.io/paparazzo/",
"navigationLinks": {
"GitHub": "https://github.com/reuters-graphics/paparazzo/",
"npm": "https://www.npmjs.com/package/@reuters-graphics/paparazzo/"
},
"readme": "HOME.md"
}
}