-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
51 lines (49 loc) · 1.68 KB
/
tsconfig.node.json
File metadata and controls
51 lines (49 loc) · 1.68 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
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2022",
"lib": ["ES2022"],
"module": "ESNext",
"types": ["node", "@playwright/test"],
"skipLibCheck": true,
"paths": {
"@/*": ["./src/*"],
"@lib/*": ["./src/lib/*"],
"@components/*": ["./src/components/*"],
"@utils/*": ["./src/utils/*"],
"@services/*": ["./src/services/*"],
"@providers": ["./src/providers/index.ts"],
"@providers/*": ["./src/providers/*"],
"@store": ["./src/store/gameStore"],
"@store/*": ["./src/store/*"],
"@hooks/*": ["./src/hooks/*"],
"@constants/*": ["./src/constants/*"],
"@gameMode/*": ["./src/gameMode/*"],
"@ui/*": ["./src/ui/*"],
"@types": ["./src/types/index.ts"],
"@config/*": ["./src/config/*"],
"@assets/*": ["./src/assets/*"],
"@infra/*": ["./infra/*"]
},
/* Bundler mode */
"moduleResolution": "bundler",
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"forceConsistentCasingInFileNames": true
},
"include": ["vite.config.ts", "vitest.config.ts", "playwright.config.ts", "webpack.*.ts", "scripts/**/*.ts", "scripts/**/*.js", "packages/network-domain/e2e/**/*.ts"],
"exclude": ["scripts/test/monitoring/**"]
}