Complier skipping png files #590
Answered
by
joshtynjala
AndrewGosling
asked this question in
Q&A
-
Our application uses images stored in src/assets, the compiler currently skips these file types as explained by the source-path documentation. Is there a way to add these files to the package? |
Beta Was this translation helpful? Give feedback.
Answered by
joshtynjala
Feb 18, 2022
Replies: 2 comments 1 reply
-
Set {
"compilerOptions": {
"source-path": ["src"]
},
"copySourcePathAssets": true
} |
Beta Was this translation helpful? Give feedback.
1 reply
-
I think you want this instead: "files": [
{
"file": "src/assets",
"path": "assets"
}
] |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
AndrewGosling
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think you want this instead: