-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
50 lines (44 loc) · 1.37 KB
/
tsconfig.json
File metadata and controls
50 lines (44 loc) · 1.37 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
47
48
49
50
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
/* ── Language & Environment ── */
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "CommonJS",
"moduleResolution": "Node",
/* ── Emit ── */
"outDir": "./dist",
"rootDir": "./src",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"removeComments": false,
/* ── Type Checking ── */
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"exactOptionalPropertyTypes": false,
/* ── Module Interop ── */
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
/* ── Experimental ── */
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
/* ── Skip lib check ── */
"skipLibCheck": true,
/* ── Path Aliases ── */
"baseUrl": ".",
"paths": {
"@beginner/*": ["src/01-beginner/*"],
"@intermediate/*": ["src/02-intermediate/*"],
"@advanced/*": ["src/03-advanced/*"],
"@frontend/*": ["src/04-frontend/*"],
"@backend/*": ["src/05-backend/*"]
}
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist", "**/*.test.ts"]
}