-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
50 lines (50 loc) · 979 Bytes
/
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
{
"compilerOptions": {
"lib": [
"es2022"
],
"moduleResolution": "bundler",
"module": "ESNext",
"target": "es2022",
"sourceMap": false,
"allowJs": true,
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": false,
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"outDir": "dist",
"declaration": true,
"types": [
"node",
"jest"
],
"paths": {
"@/*": [
"src/*"
]
},
"baseUrl": ".",
"resolveJsonModule": true,
"allowArbitraryExtensions": true
},
"include": [
"src/**/*",
"jest.config.*.ts"
],
"exclude": [
"node_modules",
"dist",
"src/__tests__/**/*",
"src/__mocks__/**/*",
"jest.config.*.ts"
],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
}
}