В Visual Studio появляется следующее сообщение:
The JavaScript language service has been disabled for the following project(s): Images.
These files exceeded the program size threshold: .\Images\static\js\main.js.
Я пытался исключить файл main.js
, добавив его в tsconfig. json, но все равно получаю предупреждение:
{
"compilerOptions": {
"noEmitOnError": true,
"strict": false,
"watch": true,
"sourceMap": true,
"lib": [ "dom", "es6", "es2017", "es2018" ],
"target": "es5" // IE11 safe
},
"exclude": [
"node_modules",
"**/main.js"
]
}
Чего мне не хватает?