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
|
{
"compilerOptions": {
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"module": "commonjs",
"target": "ES2020",
"types": ["node"],
"outDir": "out",
"lib": ["ES2020", "DOM"],
"sourceMap": true,
"rootDirs": ["src"],
"strict": true /* enable all strict type-checking options */,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
"allowUnusedLabels": false,
"incremental": true,
"allowUnreachableCode": false,
"noImplicitReturns": true,
"exactOptionalPropertyTypes": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"baseUrl": "./",
"paths": {
"@/*": ["src/*"],
"@cmd/*": ["src/commands/*"],
"@task/*": ["src/tasks/*"],
"@util/*": ["src/util/*"]
}
},
"include": ["src/**/*"]
}
|