-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
72 lines (72 loc) · 2.57 KB
/
tsconfig.base.json
File metadata and controls
72 lines (72 loc) · 2.57 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@ok-scoring/assets": ["libs/assets/index.ts"],
"@ok-scoring/components/react/hooks": [
"libs/components/react/hooks/src/index.ts"
],
"@ok-scoring/components/react/mobile": [
"libs/components/react/mobile/src/index.ts"
],
"@ok-scoring/components/react/timer-provider": [
"libs/components/react/timer-provider/src/index.ts"
],
"@ok-scoring/components/react/web": [
"libs/components/react/web/src/index.ts"
],
"@ok-scoring/data/fauna": ["libs/data/fauna/src/index.ts"],
"@ok-scoring/data/game-data": ["libs/data/game-data/src/index.ts"],
"@ok-scoring/data/game-entities": [
"libs/data/game-entities/src/index.ts"
],
"@ok-scoring/data/game-model-schemas": [
"libs/data/game-model-schemas/src/index.ts"
],
"@ok-scoring/data/game-models": ["libs/data/game-models/src/index.ts"],
"@ok-scoring/data/game-test-data": [
"libs/data/game-test-data/src/index.ts"
],
"@ok-scoring/data/generate-uuid": [
"libs/data/generate-uuid/src/index.ts"
],
"@ok-scoring/data/redis": ["libs/data/redis/src/index.ts"],
"@ok-scoring/data/sqlite-fns": ["libs/data/sqlite-fns/src/index.ts"],
"@ok-scoring/features/game-rules-fns": [
"libs/features/game-rules-fns/src/index.ts"
],
"@ok-scoring/features/game-ui-store": [
"libs/features/game-ui-store/src/index.ts"
],
"@ok-scoring/features/player-score-history-fns": [
"libs/features/player-score-history-fns/src/index.ts"
],
"@ok-scoring/styles": ["libs/styles/index.ts"],
"@ok-scoring/utils/array-fns": ["libs/utils/array-fns/src/index.ts"],
"@ok-scoring/features/scoring-web-landing": [
"libs/features/scoring-web-landing/src/index.ts"
],
"@ok-scoring/features/scoring-web-landing/server": [
"libs/features/scoring-web-landing/src/server.ts"
],
"workspace-plugin": ["tools/workspace-plugin/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}