-
Notifications
You must be signed in to change notification settings - Fork 11
/
tsconfig.json
36 lines (36 loc) · 936 Bytes
/
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
{
"exclude": [
"**/coverage",
"**/test",
"node_modules",
"**/*.d.ts",
"**/*.d.cts",
"**/*.d.mts"
],
"compilerOptions": {
"allowJs": true,
"declaration": true,
"emitDeclarationOnly": true,
"declarationMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"composite": true,
"moduleResolution": "NodeNext",
"module": "NodeNext",
"outDir": "dist"
},
"references": [
{ "path": "./packages/ckan" },
{ "path": "./packages/core" },
// { "path": "./packages/entity-renderer" },
{ "path": "./packages/graph-explorer" },
{ "path": "./packages/handler-fetch" },
// { "path": "./packages/i18n" },
// { "path": "./packages/iiif" },
{ "path": "./packages/markdown-content" },
{ "path": "./packages/sparql-proxy" },
// { "path": "./packages/spex" },
// { "path": "./packages/trifid" },
{ "path": "./packages/yasgui" }
]
}