@frontity/core
Version:
The core package of the Frontity framework.
14 lines (13 loc) • 660 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* This regular expression is used for the ts-node ignores: ts-node will
* transpile any packages from the `@frontity` org, with `frontity` in the name
* (for example `some-frontity-package`), frontity.settings files,
* frontity.config files, and any TypeScript files that people import.
*
* This ts-node transpilation is only used outside of Webpack, so mostly for
* things that people import in their frontity.settings or frontity.config
* files. Once Webpack runs, all the files are transpiled.
*/
exports.default = ["node_modules(\\/|\\\\)(?!.*(frontity|\\.ts$))"];