mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
ec41f20c40
* playwright - initial version
* browser - use existing page and not create new context
* macOS: document how to remove the security flag
* smoke test - allow to run against server build with --build option
* do not rely on args
* fix path for windows
* smoke test - smoke 💄 and -ci option
21 lines
305 B
JSON
21 lines
305 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2016",
|
|
"strict": true,
|
|
"noUnusedParameters": false,
|
|
"noUnusedLocals": true,
|
|
"outDir": "out",
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"lib": [
|
|
"es2016",
|
|
"dom"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"out",
|
|
"tools"
|
|
]
|
|
}
|