-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
36 lines (36 loc) · 1.01 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
{
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"esModuleInterop": true,
"target": "ES2022",
"module": "ES2022",
"lib": ["ES2022"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@yberion/image-utils": ["src/index.ts"]
},
"types": ["vitest"],
"useDefineForClassFields": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true
},
"files": ["commitlint.config.cts", "changelog.config.ts"],
"exclude": ["commitlint.config.cts", "changelog.config.ts"],
"include": []
}