๐Ÿ“ฆ microsoft / vscode

๐Ÿ“„ tsconfig.json ยท 27 lines
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{
	"compilerOptions": {
		"target": "es2024",
		"lib": [
			"ES2024"
		],
		"module": "nodenext",
		"noEmit": true,
		"erasableSyntaxOnly": true,
		"verbatimModuleSyntax": true,
		"allowImportingTsExtensions": true,
		"resolveJsonModule": true,
		"skipLibCheck": true,
		"strict": true,
		"exactOptionalPropertyTypes": false,
		"useUnknownInCatchVariables": false,
		"noUnusedLocals": true,
		"noUnusedParameters": true
	},
	"exclude": [
		"node_modules/**",
		"monaco-editor-playground/**",
		"builtin/**",
		"vite/**"
	]
}