SyntaxError: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead
JavaScript の警告 "Using //@
to indicate sourceURL pragmas is deprecated. Use //#
instead" は、 JavaScript の非推奨のソースマップ構文があったときに発生します。
メッセージ
Warning: SyntaxError: Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead Warning: SyntaxError: Using //@ to indicate sourceMappingURL pragmas is deprecated. Use //# instead
エラーの種類
SyntaxError
が発生したという警告です。 JavaScript の実行は停止しません。
エラーの原因
例
非推奨の構文
"@" 記号による構文は非推奨です。
js
//@ sourceMappingURL=http://example.com/path/to/your/sourcemap.map
標準の構文
代わりに "#" 記号を使用してください。
js
//# sourceMappingURL=http://example.com/path/to/your/sourcemap.map
あるいは、JavaScript ファイルに SourceMap
ヘッダーを設定して、コメントを全く表示しないようにすることもできます。
js
SourceMap: /path/to/file.js.map