-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.json
More file actions
46 lines (46 loc) · 1.51 KB
/
Copy pathbase.json
File metadata and controls
46 lines (46 loc) · 1.51 KB
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
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Base",
"compilerOptions": {
/* Base Options: */
"esModuleInterop": true,
"skipLibCheck": true,
"target": "ES2024",
"lib": ["ES2024", "ES2025.Collection", "ES2025.Iterator", "ESNext.Array"],
"verbatimModuleSyntax": true,
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
/* Strictness (strict: true implies the strict-family flags) */
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedSideEffectImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
/* If transpiling with TypeScript: */
"moduleResolution": "NodeNext",
"module": "NodeNext",
"paths": {
"#mocks": ["../internals/utils/src/mocks.ts"],
"@internals/utils": ["../internals/utils/src/index.ts"],
"@stijnvanhulle/template-core": ["../packages/core/src/index.ts"],
"@stijnvanhulle/template-demo": ["../packages/demo/src/index.ts"]
},
"outDir": "dist",
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"noEmit": true,
"allowImportingTsExtensions": true,
"noErrorTruncation": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"types": ["bun-types"]
},
"exclude": ["**/node_modules", "**/types/**"]
}