unjs / unbuild

📦 An unified javascript build system
MIT License
2.19k stars 84 forks source link

"" Is imported by "", but could not be resolved – treating it as an external dependency. #394

Open ElYaiko opened 1 month ago

ElYaiko commented 1 month ago

Environment

2.0.0 Node 19

Reproduction

-

Describe the bug

When using unbuild I get:

"~~/utils/misc" is imported by "src/utils/intl.ts", but could not be resolved – treating it as an external dependency.

But it is defined in the tsconfig.json:

{
  "compilerOptions": {
    "lib": ["ESNext"],
    "module": "esnext",
    "target": "esnext",
    "rootDir": "./",
    "baseUrl": "./src",
    "outDir": "./dist",
    "moduleResolution": "bundler",
    "moduleDetection": "force",
    "allowImportingTsExtensions": true,
    "noEmit": true,
    // "composite": true,
    "strict": true,
    "downlevelIteration": true,
    "skipLibCheck": true,
    "jsx": "react-jsx",
    "allowSyntheticDefaultImports": true,
    "forceConsistentCasingInFileNames": true,
    "noUnusedLocals": false,
    "allowJs": true,
    "paths": {
      "~~": ["."],
      "~~/*": ["./*"]
    },
    "types": [
      "bun-types" // add Bun global
    ]
  },
  // "include": [
  //   "src"
  // ],
  "exclude": [
    "dist"
  ]

Additional context

No response

Logs

No response

danielroe commented 1 month ago

unbuild does not use typescript to build your app. It uses rollup, so setting a path there doesn't tell rollup how to resolve it.