5.0.4 • Published 1 month ago

@tsconfig/svelte v5.0.4

Weekly downloads
17,471
License
MIT
Repository
github
Last release
1 month ago

A base TSConfig for working with Svelte.

Add the package to your "devDependencies":

npm install --save-dev @tsconfig/svelte
yarn add --dev @tsconfig/svelte

Add to your tsconfig.json:

"extends": "@tsconfig/svelte/tsconfig.json"

NOTE: After @tsconfig/svelte@2.0.0, you should add /// <reference types="svelte" /> to a d.ts or a index.ts(entry) file to prevent typescript error.


The tsconfig.json:

{
  "$schema": "https://json.schemastore.org/tsconfig",
  "_version": "5.0.0",

  "compilerOptions": {
    "module": "esnext",
    "moduleResolution": "bundler",
    "target": "es2017",
    /**
      Svelte Preprocess cannot figure out whether you have a value or a type, so tell TypeScript
      to enforce using `import type` instead of `import` for Types.
     */
    "verbatimModuleSyntax": true,
    /**
      To have warnings/errors of the Svelte compiler at the correct position,
      enable source maps by default.
     */
    "sourceMap": true,

    "strict": true,
    "esModuleInterop": true,
    "skipLibCheck": true
  }
}

You can find the code here.

5.0.4

1 month ago

5.0.3

1 month ago

5.0.2

8 months ago

5.0.1

8 months ago

5.0.0

10 months ago

4.0.1

1 year ago

4.0.0

1 year ago

3.0.0

2 years ago

1.0.11

3 years ago

2.0.1

3 years ago

1.0.13

3 years ago

2.0.0

3 years ago

1.0.12

3 years ago

1.0.9

4 years ago

1.0.10

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago