mirror of
https://github.com/microsoft/vscode.git
synced 2026-06-19 21:15:09 -05:00
29 lines
486 B
JSON
29 lines
486 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"target": "es2022",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"noEmit": true,
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"types": ["node"],
|
|
"maxNodeModuleJsDepth": 0
|
|
},
|
|
"include": [
|
|
"common/*.js",
|
|
"common/*.ts",
|
|
"*.js",
|
|
"*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"fixtures",
|
|
"baselines"
|
|
]
|
|
}
|