-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtsconfig.json
42 lines (42 loc) · 1.99 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
{
"extends": "./tsconfig.settings.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@algorithm.ts/internal": ["packages/_internal/src/index.ts"],
"@@/fixtures/*": ["fixtures/*"],
"@algorithm.ts/base64": ["packages/base64/src"],
"@algorithm.ts/bellman-ford": ["packages/bellman-ford/src"],
"@algorithm.ts/binary-index-tree": ["packages/binary-index-tree/src"],
"@algorithm.ts/binary-search": ["packages/binary-search/src"],
"@algorithm.ts/bipartite-matching": ["packages/bipartite-matching/src"],
"@algorithm.ts/calculator": ["packages/calculator/src"],
"@algorithm.ts/diff": ["packages/diff/src"],
"@algorithm.ts/dijkstra": ["packages/dijkstra/src"],
"@algorithm.ts/dinic": ["packages/dinic/src"],
"@algorithm.ts/dlx": ["packages/dlx/src"],
"@algorithm.ts/findset": ["packages/findset/src"],
"@algorithm.ts/gcd": ["packages/gcd/src"],
"@algorithm.ts/gomoku": ["packages/gomoku/src"],
"@algorithm.ts/graph": ["packages/graph/src"],
"@algorithm.ts/graph.types": ["packages/graph.types/src"],
"@algorithm.ts/history": ["packages/history/src"],
"@algorithm.ts/huffman": ["packages/huffman"],
"@algorithm.ts/isap": ["packages/isap/src"],
"@algorithm.ts/lcs": ["packages/lcs/src"],
"@algorithm.ts/lis": ["packages/lis/src"],
"@algorithm.ts/manacher": ["packages/manacher/src"],
"@algorithm.ts/mcmf": ["packages/mcmf/src"],
"@algorithm.ts/permutation": ["packages/permutation/src"],
"@algorithm.ts/prime": ["packages/prime/src"],
"@algorithm.ts/queue": ["packages/queue/src"],
"@algorithm.ts/roman": ["packages/roman/src"],
"@algorithm.ts/shuffle": ["packages/shuffle/src"],
"@algorithm.ts/sliding-window": ["packages/sliding-window/src"],
"@algorithm.ts/stack": ["packages/stack/src"],
"@algorithm.ts/sudoku": ["packages/sudoku/src"],
"@algorithm.ts/trie": ["packages/trie/src"]
}
},
"exclude": ["**/__test__/fixtures"]
}