-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathtsconfig.json
51 lines (51 loc) · 1.48 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
42
43
44
45
46
47
48
49
50
51
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"outDir": "dist",
"alwaysStrict": true,
"allowJs": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"jsx": "react",
"paths": {
"gosling.js": ["./src/index.ts"],
"@gosling-lang/gosling-schema": ["src/gosling-schema/index.ts"],
"@gosling-lang/higlass-schema": ["src/higlass-schema/index.ts"],
"@gosling-lang/gosling-theme": ["src/gosling-theme/index.ts"],
"@gosling-lang/gosling-track": ["./src/tracks/gosling-track/index.ts"],
"@gosling-lang/gosling-genomic-axis": ["./src/tracks/gosling-genomic-axis/index.ts"],
"@gosling-lang/gosling-brush": ["./src/tracks/gosling-brush/index.ts"],
"@gosling-lang/dummy-track": ["./src/tracks/dummy-track/index.ts"],
"@data-fetchers": ["./src/data-fetchers/index.ts"],
"zlib": ["./src/alias/zlib.ts"]
},
"baseUrl": ".",
"types": ["vitest/globals", "vite/client"]
},
"files": [
"src/index.ts",
"editor/index.tsx",
],
"include": ["src", "src/**/*.d.ts", "editor", "e2e"],
"exclude": [
"node_modules",
"public",
"build",
"dist"
]
}