-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
83 lines (76 loc) · 2.09 KB
/
tsconfig.json
File metadata and controls
83 lines (76 loc) · 2.09 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
73
74
75
76
77
78
79
80
81
82
83
{
"compilerOptions": {
// Language and Environment
"target": "ES2022",
"lib": ["ES2022", "DOM"],
"module": "ESNext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": false,
"resolveJsonModule": true,
"allowJs": true,
// Emit
"declaration": true,
"declarationMap": true,
"emitDeclarationOnly": false,
"importHelpers": false,
"verbatimModuleSyntax": false,
"inlineSourceMap": false,
"inlineSources": false,
"mapRoot": "",
"newLine": "lf",
"noEmit": false,
"noEmitHelpers": false,
"noEmitOnError": true,
"outDir": "./dist",
"removeComments": false,
"sourceMap": true,
"sourceRoot": "",
"stripInternal": false,
// JavaScript Support
"checkJs": false,
"maxNodeModuleJsDepth": 1,
// Type Checking
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"alwaysStrict": true,
"exactOptionalPropertyTypes": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": true,
// Modules
"allowUmdGlobalAccess": false,
"baseUrl": ".",
"paths": {
"@pcu/core": ["./packages/core/src"],
"@pcu/utils": ["./packages/utils/src"]
},
"typeRoots": ["./node_modules/@types"],
"types": ["node"],
// Interop Constraints
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
// Projects
"incremental": true,
// Completeness
"skipLibCheck": true
},
"exclude": ["node_modules", "dist", "test", "**/*.test.ts", "**/*.spec.ts"],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
}
}