mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-28 14:47:53 +00:00
21 lines
433 B
JSON
21 lines
433 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"target": "ES2024",
|
|
"lib": [
|
|
"ES2024"
|
|
],
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"exactOptionalPropertyTypes": false,
|
|
"useUnknownInCatchVariables": false,
|
|
"alwaysStrict": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitOverride": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
}
|
|
}
|