Mind_Reader/tsconfig.json
jakergrossman 25b23c514b Implement increasing font and editor scale
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
2021-10-16 19:30:40 -05:00

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"
]
}