-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
45 lines (42 loc) · 1.21 KB
/
tsconfig.json
File metadata and controls
45 lines (42 loc) · 1.21 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
{
"compilerOptions": {
"target": "ES2017",
"module": "nodenext",
"moduleResolution": "nodenext",
"skipLibCheck": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"resolveJsonModule": true,
"isolatedModules": true,
"moduleDetection": "force",
"allowJs": false,
"checkJs": false,
"jsx": "react-jsx",
"noEmit": true,
"esModuleInterop": true,
"declaration": true,
"noEmitOnError": true,
"incremental": true,
"strict": true,
"pretty": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"rewriteRelativeImportExtensions": true,
"erasableSyntaxOnly": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedSideEffectImports": true,
"paths": {
// Core package
"@tapsioss/client-socket-manager": ["./packages/core/src/index.ts"],
// Test helpers package
"@repo/test-helpers": ["./test-helpers/src/index.ts"]
}
},
"include": ["**/*.ts", "**/*.tsx"],
"exclude": ["node_modules", "dist"]
}