tech options works incorrectly for different techs on different levels
Yeti-or opened this issue · 0 comments
Yeti-or commented
For example, we have such options:
options : {
levels : [
'common',
'project'
],
techmap : {
js : ['ts', 'js']
}
}
and we have two files button.js and button.ts
first on level common
second on project
right now we get:
[(
require('./common/button/button.ts')).applyDecls()
),(
(
require('./project/button/button.js')).applyDecls()
)][0]
so we get only common button
but we want:
[(
require('./common/button/button.ts'),
require('./project/button/button.js')).applyDecls()
)][0]
to get full component