V5 Ignore directories on node ace build? #1350
-
Is there a way to ignore directories on I tried adding the directory to I'm using a bundler for the front-end Javascript that I am writing in Typescript, and as such I want the Typescript files to just copy-over and not get compiled into Javascript by |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
How about using {
"exclude": [
"resources/**/*",
"node_modules",
"build"
],
} |
Beta Was this translation helpful? Give feedback.
How about using
tsconfig
to ignore these files? Just add it to theexclude
array.