-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 815 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 815 Bytes
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
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2023",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"swissqrbill/svg": ["node_modules/swissqrbill/lib/esm/svg/index.d.ts"],
"swissqrbill/pdf": ["node_modules/swissqrbill/lib/esm/pdf/index.d.ts"],
"swissqrbill/types": ["node_modules/swissqrbill/lib/esm/shared/types.d.ts"],
"swissqrbill/utils": ["node_modules/swissqrbill/lib/esm/shared/utils.d.ts"],
}
}
}