forked from zhuanggenhua/BoardGame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.server.json
More file actions
42 lines (42 loc) · 1 KB
/
Copy pathtsconfig.server.json
File metadata and controls
42 lines (42 loc) · 1 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
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.server.tsbuildinfo",
"target": "ES2022",
"lib": ["ES2022"],
"module": "ESNext",
"moduleResolution": "bundler",
"types": ["node"],
"skipLibCheck": true,
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"server.ts",
"src/server/**/*",
"src/shared/**/*",
"src/lib/i18n/**/*",
"src/lib/utils.ts",
"src/games/**/game.ts",
"src/games/**/manifest.ts",
"src/games/manifest.server*.ts"
, "src/engine/primitives/__tests__/mulligan.test.ts" ],
"exclude": [
"**/__tests__/**",
"**/*.test.*",
"**/*.spec.*",
"**/*.tsx",
"src/games/**/index.ts",
"src/games/manifest.client.*",
"src/games/**/ui/**",
"src/lib/audio/**"
]
}