I'd like to disable the warning AL1025, because of the nature of the AL compiler, I get a lot of warnings related to my node_modules
folder. Apparently, it should be possible to suppress warnings in the app.json like this
"suppressWarnings": ["AL1025"]
But I still get those warnings:
Microsoft (R) AL Compiler version 7.4.7.43721
Copyright (C) Microsoft Corporation. All rights reserved
Compilation started for project 'ABC Sample Ext' containing '11' files at '19:58:7.337'.
/Users/username/Dev/abc-workspace/abc-sample/node_modules/he/LICENSE-MIT.txt(1,1): warning AL1025: The file at location '/Users/username/Dev/abc-workspace/abc-sample/node_modules/he/LICENSE-MIT.txt' does not match any definition.
What am I doing wrong?