-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
59 lines (59 loc) · 1.31 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
{
"buildOptions": {
"incremental": true
},
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"importHelpers": true,
// "baseUrl": ".",
"declaration": true,
"declarationMap": true,
"incremental": true,
"composite": true,
"listEmittedFiles": true,
"listFiles": true,
"noUncheckedIndexedAccess": false,
"preserveConstEnums": true,
"tsBuildInfoFile": ".temp/project.tsbuildinfo",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"lib": ["ES2021", "ESNext.Promise"],
"module": "CommonJS",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"outDir": "dist",
"resolveJsonModule": true,
"rootDir": "./",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictBindCallApply": true,
"diagnostics": false,
"paths": {
"@*": [
"./src/*"
]
},
"target": "ES2020",
"useUnknownInCatchVariables": false
},
"include": [
"src/**/*.ts",
"src/**/*.js",
"shared.ts"
],
"exclude": [
"__mocks__",
"__snapshots__",
// "**/*.test.js",
// "**/*.test.ts",
"examples",
"dist",
"node_modules",
"**/tsup.config.ts"
]
}