-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
53 lines (53 loc) · 2.39 KB
/
tsconfig.base.json
File metadata and controls
53 lines (53 loc) · 2.39 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
51
52
53
{
"$schema": "https://json.schemastore.org/tsconfig#",
"//": {
"Typescript Node.js Target Mapping": "https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping",
"Node.js ECMAScript Mapping": "https://node.green/",
"vscode-versions": "https://github.com/ewanharris/vscode-versions",
"Recommended TSConfig Bases": "https://github.com/tsconfig/bases?tab=readme-ov-file#table-of-tsconfigs",
"Available/Latest GitHub Runner Images": "https://github.com/actions/runner-images/tree/main?tab=readme-ov-file#available-images",
"Node.js versions in GitHub Runner Images": {
"Ubuntu 2404 - Node.js version(s)": {
"installed": "https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2404-Readme.md#language-and-runtime",
"cached": "https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2404-Readme.md#nodejs"
},
"macOS 14": {
"installed": "https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md#language-and-runtime",
"cached": "https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md#nodejs"
},
"Windows Server 2022": {
"!note!": "[Windows 19 and 22] Node.js version 16 will be removed from Windows images on 2025-05-05. See https://github.com/actions/runner-images/issues/11710",
"installed": "https://github.com/actions/runner-images/blob/main/images/windows/Windows2022-Readme.md#language-and-runtime",
"cached": "https://github.com/actions/runner-images/blob/main/images/windows/Windows2022-Readme.md#nodejs"
}
}
},
"compileOnSave": true,
"extends": "./tsconfig.node.json",
"compilerOptions": {
"allowImportingTsExtensions": true,
"composite": true,
"declarationMap": true,
"emitDeclarationOnly": true,
"forceConsistentCasingInFileNames": true,
"isolatedDeclarations": true,
"isolatedModules": true,
"noEmitOnError": true,
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"sourceMap": true,
"verbatimModuleSyntax": true
},
"exclude": [
"**/node_modules/**",
"**/tsconfig.json",
"**/tsconfig.*.json"
]
}