Julien Poitrin
Julien Poitrin
> Take this glyph `갟 0xAC1F`. It's made from ㄱㅐㄱㅅ. So it's ambiguous because you could mean 객 (the first three "letters"ㄱㅐㄱ). If you want to start a new word...
You could also disable linting during the package process, see [AnomalyInnovations/serverless-bundle#options](https://github.com/AnomalyInnovations/serverless-bundle#options) for more information ``` custom: bundle: ... linting: false # Enable linting as a part of the build process...
I thought I had the same problem as you, but then, I checked again and noticed that my import path was wrong. I had… ``` import './my-comp-component.scss' ``` … but...
> add `// @ts-nocheck` to the generated files This is what we use atm, e.g. ```bash SED_COMMAND='1s;^;// @ts-nocheck\n;' if [ "$(uname)" != "Darwin" ]; then sed -i "$SED_COMMAND" $TARGET**/*.ts else...