[READ-ONLY] Mirror of https://github.com/danielroe/subpath-exports.
427 B
16 lines
1import { main, subpath } from './a'
2
3// This works fine with a version of node that supports subpath exports
4console.log({ main: main(), subpath: subpath() })
5
6export default {
7 // Auto import components: https://go.nuxtjs.dev/config-components
8 components: true,
9
10 build: {
11 transpile: [/b/, /node_modules/]
12 },
13
14 // Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
15 buildModules: [],
16};