UNPKG

react-iframe

Version:

Easy peasy lemon squeezy iframes with react

12 lines (10 loc) 263 B
const tsc = require("typescript") const tsConfig = require("../tsconfig.json") module.exports = { process(src, path) { if (path.endsWith(".ts") || path.endsWith(".tsx")) { return tsc.transpile(src, tsConfig.compilerOptions, path, []) } return src } }