У меня есть определенные ошибки в моей папке машинописных текстов
Пример: ts (2300)
Есть ли способ отключить определенные ошибки с помощью кода в моем tsconfig. json?
Мой текущий tsconfig. json
{
"compilerOptions": {
"module": "esnext",
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"rootDir": "problems",
"target": "es2016",
"lib": ["esnext", "DOM"],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": false,
"noEmit": true,
"checkJs": false
},
"exclude": ["node_modules"],
"include": ["problems", "playground"]
}
введите описание изображения здесь