私はAngular 4のアプリケーションを持っていました。ジャスミンとカルマでテストを試みました。しかし、このエラーが発生しました。ExperimentalDecorators警告
デコレータの実験的サポートは、将来リリースの で変更される可能性があります。この警告を削除するには、 'experimentalDecorators'オプションを設定してください。
これが私のTSconfigファイル
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/",
"baseUrl": "./",
"sourceMap": true,
"declaration": true,
"module": "commonjs",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es6",
"dom"
]
},
"angularCompilerOptions": {
"genDir": "aot",
"strictMetadataEmit": true
}
}
である私はちょうどVScodeのsettings.jsonを編集し
"typescript.tsdk": "node_modules\\typescript\\lib"
をこのコードを置くが、うまくいきませんでした。