I get "[ts] Experimental decorator support is a feature that may be changed in a future version. Set the" experimentalDecorators "parameter to remove this warning."
I am new to Angular and I cannot solve it.
My tsconfig.json file:
{ "compilerOptions":{ "allowSyntheticDefaultImports":true, "declaration":false, "emitDecoratorMetadata":true, "experimentalDecorators":true, "lib":[ "dom", "es2015" ], "module":"es2015", "moduleResolution":"node", "sourceMap":true, "target":"es5" }, "include":[ "src/**/*.ts" ], "exclude":[ "node_modules" ], "compileOnSave":false, "atom":{ "rewriteTsconfig":false }
}
Print:

source share