I have
Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option `to remove this warning.
even my compilerOptions in tsconfig.json have settings:
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
What is weird that some random classes that use decorators does not show that warning but rest in same project does.
What could cause such behaviorof the TypeScript compiler?