Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Parser is slow with TypeScript integration #722

Open
@codercms

Description

@codercms

Before You File a Bug Report Please Confirm You Have Done The Following...

  • I'm usingeslint-plugin-svelte. (*.svelte file linting does not work with the parser alone. You should also use eslint-plugin-svelte with it.)
  • I'm sure the problem is a parser problem. (If you are not sure, search for the issue ineslint-plugin-svelte repo and open the issue ineslint-plugin-svelte repo if there is no solution.
  • I have tried restarting my IDE and the issue persists.
  • I have updated to the latest version of the packages.

What version of ESLint are you using?

9.27.0

What version ofeslint-plugin-svelte andsvelte-eslint-parser are you using?

  • svelte-eslint-parser@1.2.0
  • eslint-plugin-svelte: not used at all

What did you do?

Configuration
import{includeIgnoreFile}from'@eslint/compat';importjsfrom'@eslint/js';importglobalsfrom'globals';import{fileURLToPath}from'node:url';importtsfrom'typescript-eslint';importsvelteConfigfrom'./svelte.config.js';importsvelteParserfrom'svelte-eslint-parser';constgitignorePath=fileURLToPath(newURL('./.gitignore',import.meta.url));exportdefaultts.config(includeIgnoreFile(gitignorePath),js.configs.recommended,    ...ts.configs.recommended,{languageOptions:{globals:{...globals.browser, ...globals.node}},rules:{// typescript-eslint strongly recommend that you do not use the no-undef lint rule on TypeScript projects.// see: https://typescript-eslint.io/troubleshooting/faqs/eslint/#i-get-errors-from-the-no-undef-rule-about-global-variables-not-being-defined-even-though-there-are-no-typescript-errors"no-undef":'off'}},// Other config for non-Svelte files{ignores:['eslint.config.js','svelte.config.js'],languageOptions:{parser:ts.parser,parserOptions:{project:"./tsconfig.json",extraFileExtensions:[".svelte"],},},},// Svelte config{files:["**/*.svelte","**/*.svelte.js","**/*.svelte.ts",],languageOptions:{parser:svelteParser,// Parse the `<script>` in `.svelte` as TypeScript by adding the following configuration.parserOptions:{parser:ts.parser,                svelteConfig},},},);

Svelte eslint parser causetypescript-eslint to create new program for each .svelte file, on large projects parsing may take significant amount of time from 30 secs to couple of minutes depending on project's size.
Here's related issue ineslint-plugin-svelte -sveltejs/eslint-plugin-svelte#1084, I believe this issue have roots insvelte-eslint-parser, because even if I removesvelte-eslint-plugin from project, and just use parser there's no visible difference in amount of time needed for eslint to complete its job.

Here's what I did:

  • Set env varDEBUG totypescript-eslint:typescript-estree:*, i.e.export DEBUG=typescript-eslint:typescript-estree:*
  • Raneslint .

Here's logs from eslint output:

Click Me
typescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\eslint.config.js +0mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +41mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Accordion\Accordion.svelte +1mstypescript-eslint:typescript-estree:parseSettings:resolveProjectList parserOptions.project (excluding ignored) matched projects: Map(1) {'<root>/tsconfig.json' => '<root>/tsconfig.json'} +0mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects File did not belong to any existing programs, moving to create/update. <root>\src\lib\components\accordion\accordion.svelte +0mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Creating watch program for <root>\tsconfig.json. +0mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found program for file. <root>\src\lib\components\accordion\accordion.svelte +677mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Accordion\Accordion.svelte +0mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\app.d.ts +27mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\app.d.ts +27mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\auth\index.ts +8mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\auth\index.ts +7mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\accordion\accordion.test.ts +3mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Accordion\Accordion.test.ts +4mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\accordion\index.ts +7mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Accordion\index.ts +7mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\accordion\context.ts +5mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Accordion\context.ts +5mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\accordion\types.ts +13mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Accordion\types.ts +12mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\appbar\appbar.test.ts +6mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\AppBar\AppBar.test.ts +7mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +765mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\AppBar\AppBar.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\appbar\appbar.svelte +15mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\AppBar\AppBar.svelte +24mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +25mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Avatar\Avatar.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\avatar\avatar.svelte +25mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Avatar\Avatar.svelte +24mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\avatar\avatar.test.ts +18mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Avatar\Avatar.test.ts +10mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\avatar\types.ts +8mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Avatar\types.ts +8mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +37mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Combobox\Combobox.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\combobox\combobox.svelte +14mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Combobox\Combobox.svelte +19mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\combobox\types.ts +21mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Combobox\types.ts +16mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +41mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\FileUpload\FileUpload.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\fileupload\fileupload.svelte +20mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\FileUpload\FileUpload.svelte +25mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\appbar\types.ts +21mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\AppBar\types.ts +15mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\fileupload\fileupload.test.ts +4mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\FileUpload\FIleUpload.test.ts +5mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\fileupload\types.ts +4mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\FileUpload\types.ts +4mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\modal\types.ts +4mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Modal\types.ts +4mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\modal\modal.test.ts +6mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Modal\Modal.test.ts +5mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +46mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Modal\Modal.svelte +0mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\modal\modal.svelte +7mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Modal\Modal.svelte +10mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\navigation\index.ts +14mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Navigation\index.ts +11mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +21mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Accordion\Accordion.test.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\accordion\accordion.test.svelte +7mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Accordion\Accordion.test.svelte +21mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +23mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Navigation\NavBar.test.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\navigation\navbar.test.svelte +23mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Navigation\NavBar.test.svelte +14mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\combobox\combobox.test.ts +11mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Combobox\Combobox.test.ts +7mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\navigation\navigation.test.ts +4mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Navigation\Navigation.test.ts +3mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\navigation\context.ts +14mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Navigation\context.ts +14mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +36mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Navigation\NavTile.svelte +0mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\navigation\navtile.svelte +8mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Navigation\NavTile.svelte +14mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +20mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Navigation\NavBar.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\navigation\navbar.svelte +21mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Navigation\NavBar.svelte +19mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +14mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Navigation\NavRail.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\navigation\navrail.svelte +15mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Navigation\NavRail.svelte +14mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +17mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Accordion\AccordionItem.svelte +0mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\accordion\accordionitem.svelte +17mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Accordion\AccordionItem.svelte +19mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\navigation\types.ts +11mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Navigation\types.ts +7mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +23mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Pagination\Pagination.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\pagination\pagination.svelte +16mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Pagination\Pagination.svelte +31mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\pagination\pagination.test.ts +28mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Pagination\Pagination.test.ts +13mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +42mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Navigation\NavRail.test.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\navigation\navrail.test.svelte +12mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Navigation\NavRail.test.svelte +15mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\pagination\types.ts +9mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Pagination\types.ts +5mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +19mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Popover\Popover.svelte +0mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\popover\popover.svelte +13mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Popover\Popover.svelte +17mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\popover\popover.test.ts +16mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Popover\Popover.test.ts +12mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +25mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Progress\Progress.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\progress\progress.svelte +7mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Progress\Progress.svelte +10mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\progress\progress.test.ts +11mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Progress\Progress.test.ts +8mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\progress\types.ts +5mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Progress\types.ts +5mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +25mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\ProgressRing\ProgressRing.svelte +0mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\progressring\progressring.svelte +9mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\ProgressRing\ProgressRing.svelte +12mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\progressring\progressring.test.ts +11mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\ProgressRing\ProgressRing.test.ts +9mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\progressring\types.ts +5mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\ProgressRing\types.ts +4mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\rating\index.ts +5mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Rating\index.ts +5mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +27mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Rating\Rating.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\rating\rating.svelte +7mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Rating\Rating.svelte +11mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\popover\types.ts +12mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Popover\types.ts +8mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\rating\types.ts +2mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Rating\types.ts +3mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\rating\rating.test.ts +3mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Rating\Rating.test.ts +2mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +25mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Segment\Segment.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\segment\segment.svelte +9mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Segment\Segment.svelte +13mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\segment\context.ts +10mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Segment\context.ts +6mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +18mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Segment\Segment.test.svelte +0mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\segment\segment.test.svelte +7mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Segment\Segment.test.svelte +10mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +8mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Segment\SegmentItem.svelte +0mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\segment\segmentitem.svelte +8mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Segment\SegmentItem.svelte +8mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\segment\types.ts +10mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Segment\types.ts +7mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +15mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Slider\Slider.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\slider\slider.svelte +7mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Slider\Slider.svelte +13mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\segment\index.ts +13mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Segment\index.ts +8mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\slider\types.ts +4mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Slider\types.ts +4mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\slider\slider.test.ts +3mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Slider\Slider.test.ts +3mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +27mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Switch\Switch.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\switch\switch.svelte +9mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Switch\Switch.svelte +12mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\switch\types.ts +14mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Switch\types.ts +11mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\switch\switch.test.ts +4mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Switch\Switch.test.ts +3mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\tabs\context.ts +8mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Tabs\context.ts +8mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\tabs\index.ts +3mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Tabs\index.ts +3mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +35mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Tabs\Tabs.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\tabs\tabs.svelte +5mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Tabs\Tabs.svelte +9mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +17mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Tabs\Tabs.test.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\tabs\tabs.test.svelte +20mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Tabs\Tabs.test.svelte +21mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\tabs\tabs.test.ts +20mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Tabs\Tabs.test.ts +16mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +34mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Tabs\TabsControl.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\tabs\tabscontrol.svelte +15mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Tabs\TabsControl.svelte +20mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\segment\segment.test.ts +32mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Segment\Segment.test.ts +27mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\tabs\types.ts +7mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Tabs\types.ts +7mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +49mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\TagsInput\TagsInput.svelte +0mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\tagsinput\tagsinput.svelte +9mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\TagsInput\TagsInput.svelte +12mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\tagsinput\tagsinput.test.ts +13mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\TagsInput\TagsInput.test.ts +9mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\tagsinput\types.ts +4mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\TagsInput\types.ts +4mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +25mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Tooltip\Tooltip.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\tooltip\tooltip.svelte +9mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Tooltip\Tooltip.svelte +12mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\toast\types.ts +10mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Toast\types.ts +8mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +23mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Toast\ToastProvider.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\toast\toastprovider.svelte +15mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Toast\ToastProvider.svelte +26mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\tooltip\tooltip.test.ts +26mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Tooltip\Tooltip.test.ts +14mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\internal\noop.ts +3mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\internal\noop.ts +3mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\internal\create-context.ts +6mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\internal\create-context.ts +6mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\tooltip\types.ts +3mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Tooltip\types.ts +3mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\internal\snippets.ts +3mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\internal\snippets.ts +3mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +47mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\+layout.svelte +0mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\+layout.svelte +4mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\+layout.svelte +7mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +12mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\+page.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\+page.svelte +12mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\+page.svelte +12mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\+page.ts +6mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\+page.ts +3mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\internal\use-id.ts +4mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\internal\use-id.ts +5mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\about\+page.svelte +4mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\about\+page.svelte +6mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +19mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\lib\components\Tabs\TabsPanel.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\components\tabs\tabspanel.svelte +7mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\components\Tabs\TabsPanel.svelte +7mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\lib\internal\test-utils.ts +10mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\lib\internal\test-utils.ts +8mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\about\+page.ts +4mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\about\+page.ts +3mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +20mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\accordions\+page.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\accordions\+page.svelte +8mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\accordions\+page.svelte +26mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +35mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\app-bars\+page.svelte +2mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\app-bars\+page.svelte +38mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\app-bars\+page.svelte +31mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +25mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\avatars\+page.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\avatars\+page.svelte +25mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\avatars\+page.svelte +30mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +25mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\combobox\+page.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\combobox\+page.svelte +25mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\combobox\+page.svelte +27mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +27mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\file-upload\+page.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\file-upload\+page.svelte +30mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\file-upload\+page.svelte +33mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +35mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\modal\+page.svelte +2mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\modal\+page.svelte +36mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\modal\+page.svelte +26mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +29mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\navigation\+page.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\navigation\+page.svelte +32mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\navigation\+page.svelte +34mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +26mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\popover\+page.svelte +2mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\popover\+page.svelte +29mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\popover\+page.svelte +26mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +25mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\progress\+page.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\progress\+page.svelte +23mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\progress\+page.svelte +24mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +22mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\progress-rings\+page.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\progress-rings\+page.svelte +22mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\progress-rings\+page.svelte +24mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +20mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\pagination\+page.svelte +0mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\pagination\+page.svelte +21mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\pagination\+page.svelte +11mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +14mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\ratings\+page.svelte +2mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\ratings\+page.svelte +17mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\ratings\+page.svelte +25mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +20mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\segment-control\+page.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\segment-control\+page.svelte +19mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\segment-control\+page.svelte +10mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +11mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\slider\+page.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\slider\+page.svelte +12mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\slider\+page.svelte +22mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +19mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\switch\+page.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\switch\+page.svelte +22mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\switch\+page.svelte +26mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +26mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\tabs\+page.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\tabs\+page.svelte +27mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\tabs\+page.svelte +24mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +27mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\tags-input\+page.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\tags-input\+page.svelte +26mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\tags-input\+page.svelte +28mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +23mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\Counter.svelte +0mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\counter.svelte +25mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\Counter.svelte +21mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +20mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\Header.svelte +1mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\header.svelte +19mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\Header.svelte +11mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\sverdle\+page.server.ts +9mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\sverdle\+page.server.ts +6mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +18mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\sverdle\+page.svelte +2mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\sverdle\+page.svelte +16mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\sverdle\+page.svelte +31mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\sverdle\game.ts +29mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\sverdle\game.ts +15mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\sverdle\how-to-play\+page.svelte +7mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\sverdle\how-to-play\+page.svelte +12mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\sverdle\how-to-play\+page.ts +10mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\sverdle\how-to-play\+page.ts +5mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\vite.config.ts +3mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\vite.config.ts +2mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\sverdle\words.server.ts +2mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\sverdle\words.server.ts +2mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\svelte.config.js +139mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +4mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\tooltip\+page.svelte +2mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\tooltip\+page.svelte +91mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\tooltip\+page.svelte +107mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\estree.ts +24mstypescript-eslint:typescript-estree:create-program:createSourceFile Getting AST without type information in TS mode for: <root>\src\routes\components\toast\+page.svelte +0mstypescript-eslint:typescript-estree:create-program:getWatchProgramsForProjects Found existing program for file. <root>\src\routes\components\toast\+page.svelte +23mstypescript-eslint:typescript-estree:create-program:createProjectProgram Creating project program for: <root>\src\routes\components\toast\+page.svelte +19ms

Logs clearely indicate that the new TS program created for each .svelte file, and that's the reason why linting is slow on large projects

What did you expect to happen?

Svelte ESLint Parser reuses the same program for each .svelte file

What actually happened?

Svelte ESLint Parser creates new program for each .svelte file

Link toGitHub Repo with Minimal Reproducible Example

https://github.com/codercms/svelte-eslint-parser-bug

Additional comments

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions


      [8]ページ先頭

      ©2009-2025 Movatter.jp