mirror of
https://github.com/We-Dont-Byte/Mind_Reader.git
synced 2024-11-14 19:25:59 +00:00
25b23c514b
The following commands adjust the font scale in the editor only: - mind-reader.increaseFontScale - mind-reader.decreaseFontScale - mind-reader.resetFontScale The following commands adjust the overall editor scale: - mind-reader.increaseEditorScale - mind-reader.decreaseEditorScale - mind-reader.resetEditorScale
22 lines
381 B
JSON
22 lines
381 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"outDir": "out",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"sourceMap": true,
|
|
"rootDir": "src",
|
|
"strictPropertyInitialization": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true, /* enable all strict type-checking options */
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
".vscode-test",
|
|
"out"
|
|
]
|
|
}
|