When I compile a simple hallo-world app the compiler outputs a bunch of files:
•`kotlin.js`
•`kotlin.meta.js`
•`main.js`
•`main.meta.js`
•`root-package.kjsm`
Is it okay to just keep
kotlin.js
and
main.js
in production?
b
bashor
09/04/2017, 8:30 AM
yes, it’s ok, .met.js and .kjsm files contain metadata for compiler, you need them only if you develop a library i.e you want to consume this API from other modules.