-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathtsconfig.json
72 lines (63 loc) · 1.72 KB
/
tsconfig.json
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
{
"include": ["lib/**/*.ts", "lib/packages/**/*.ts", "lib/index.ts"],
"exclude": ["src"],
"files": ["lib/index.ts"],
"typeAcquisition": {
"enable": true,
"disableFilenameBasedTypeAcquisition": true
},
"compilerOptions": {
"allowUnreachableCode": true,
"allowUnusedLabels": true,
"exactOptionalPropertyTypes": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitThis": false,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"allowUmdGlobalAccess": false,
"baseUrl": "./lib",
"module": "ESNext",
"moduleResolution": "node",
"paths": {
"@utils/*": ["utils/*"],
"@test-helpers/*":["packages/__test__/*"]
},
"resolveJsonModule": true,
"types": ["node", "jest"],
"typeRoots": ["lib/packages/__test__/jest-ext.d.ts", "node_modules/@types"],
"declaration": false,
"outDir": "dist/tsc",
"preserveConstEnums": true,
"stripInternal": true,
"checkJs": true,
"plugins": [
{
"name": "typescript-eslint-language-service"
},
{
"transform": "typescript-transform-paths"
},
{
"transform": "typescript-transform-paths",
"afterDeclarations": true
}
],
"allowSyntheticDefaultImports": false,
"esModuleInterop": false,
"forceConsistentCasingInFileNames": true,
"preserveSymlinks": true,
"lib": ["esnext", "dom"],
"target": "esnext",
"explainFiles": false,
"extendedDiagnostics": true,
"listEmittedFiles": true,
"listFiles": true,
"traceResolution": false,
"composite": false,
"incremental": false
}
}