после установки experimentalDecorators в значение true все еще остаются ошибки

#typescript

Вопрос:

Я повторяю, что говорит ошибка, и соответствующее поле имеет значение true, поэтому я не уверен, где находится эта проблема.

tsconfig.json

 {
  "compilerOptions": {
    "module": "commonjs",
    "declaration": true,
    "removeComments": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "allowSyntheticDefaultImports": true,
    "target": "es2017",
    "sourceMap": true,
    "outDir": "./dist",
    "baseUrl": "./",
    "incremental": true,
    "skipLibCheck": true
  },
  "include": ["src/**/*"],
  "exclude": ["node_modules", "**/*.spec.ts"]
}
 

user.dto.ts

 import { IsString } from 'class-validator'

export class User {
  @IsString()
  name: string // <--Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option in your 'tsconfig' or 'jsconfig' to remove this warning.
}