Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Output file has not been built from source file, only inside +*.ts files. #13644

Open
motherthestate opened this issue Mar 26, 2025 · 2 comments

Comments

@motherthestate
Copy link

Describe the bug

My project imports some types from as typescript references.

// tsconfig.json
{
  "extends": "./.svelte-kit/tsconfig.json",
  "compilerOptions": {
    "allowJs": true,
    "checkJs": true,
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "resolveJsonModule": true,
    "skipLibCheck": true,
    "sourceMap": true,
    "strict": true,
    "moduleResolution": "bundler",
    "composite": true
  },
  "references": [
    {
      "path": "../api/tsconfig.json"
    }
  ]
}

// package.json
 "devDependencies": {
    "api": "file:../api",
}

This works fine in all ts files:

// file.ts
import { AppType } from 'api/src/types';

But not for example my layout:

// +layout.server.ts
import { AppType } from 'api/src/types'; // Error: Output file '.../api/src/types.d.ts' has not been built from source file '.../api/src/types.ts'.ts(6305

Reproduction

Difficult for me to setup a codesandbox since these a local references. I also don't know if this is a bug or tsconfig misconfiguration on my part.

Logs

System Info

System:
    OS: macOS 15.2
    CPU: (8) arm64 Apple M1
    Memory: 311.83 MB / 16.00 GB
    Shell: 5.9 - /bin/zsh
  Binaries:
    Node: 20.17.0 - /usr/local/bin/node
    Yarn: 1.22.19 - /opt/homebrew/bin/yarn
    npm: 10.8.2 - /usr/local/bin/npm
    pnpm: 8.15.4 - /opt/homebrew/bin/pnpm
    bun: 1.2.5 - /opt/homebrew/bin/bun
  Browsers:
    Chrome: 134.0.6998.118
    Safari: 18.2
  npmPackages:
    @sveltejs/adapter-auto: ^4.0.0 => 4.0.0 
    @sveltejs/kit: ^2.16.0 => 2.20.2 
    @sveltejs/vite-plugin-svelte: ^5.0.0 => 5.0.3 
    svelte: ^5.0.0 => 5.25.3 
    vite: ^6.0.0 => 6.2.3

Severity

annoyance

Additional Information

No response

@motherthestate
Copy link
Author

@Conduitry Why the label, should I provide more info?

@elliott-with-the-longest-name-on-github
Copy link
Contributor

Yes, there's not much we can do with an issue like this without a reproduction.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants