Skip to content

Automatically exclude outDir from import suggestions in source code #47184

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

Closed
lgarron opened this issue Dec 18, 2021 · 10 comments
Closed

Automatically exclude outDir from import suggestions in source code #47184

lgarron opened this issue Dec 18, 2021 · 10 comments
Labels
Working as Intended The behavior described is the intended behavior; this is not a bug

Comments

@lgarron
Copy link

lgarron commented Dec 18, 2021

Bug Report

🔎 Search Terms

prevent suggest autocomplete import path out dist build exclude filter only 🤷‍♀️

#35395 is the closest related issue, but it hasn't seen much progress. I'm filing this new issue per:

As a general rule, if auto-imports is doing something that objectively makes no sense, please file a new issue instead of commenting on this one for better visibility. This thread is about excluding things that we really have no way of knowing to exclude without the user telling us explicitly, like #35395 (comment). Thanks!

🕗 Version & Regression Information

Has been a bug as long as I can remember. 😢

⏯ Repro

git clone https://github.com/cubing/cubing.js && cd cubing.js
git checkout 0314f2789a796ff57d40b567cc674baf5c1a6cc7
npm install && make build # Populate `dist` dir
code . ./src/sites/experiments.cubing.net/cubing.js/stub/index.ts

Then wait for TS to initialize and type new TwistyPlayer to get an import suggestion.

(I'm sorry, I've had trouble creating a smaller repro. But those shell commands should reliably create a repro state.)

🙁 Actual behavior

The top import suggestion is TwistyPlayer from ../../../../../dist/types/twisty, ahead of ../../../../cubing/twisty.

Screen Shot 2021-12-17 at 17 26 07

🙂 Expected behavior

The top (and only exact string match) import suggestion is for TwistyPlayer from ../../../../cubing/twisty.


The compiler options in tsconfig.json include "outDir": "./dist". I've spent quite some time trying to tweak the outDir, rootDir, include, exclude, fields in package.json, etc. Nothing seems to change the fact that dist is prioritized for the import suggestion. Given that the out dir is the output for my source code, I never want to import it in my source code. I find the current behaviour surprising, and have not been able to work around it after multiple attempts of several hours each. 😕

Any workarounds or TypeScript features to prevent dist from showing up would be appreciated!

@fatcerberus
Copy link

fatcerberus commented Dec 18, 2021

Adding your output directory to exclude (in tsconfig, not package.json) doesn’t help?

@lgarron
Copy link
Author

lgarron commented Dec 18, 2021

Adding your output directory to exclude (in tsconfig, not package.json) doesn’t help?

Alas, I just tried again from scratch and this does nothing using any or all of these entries in exclude:

  • "dist"
  • "./dist"
  • "dist/**/*"
  • "./dist/**/*"

e.g.

Screen Shot 2021-12-18 at 02 10 56

@andrewbranch
Copy link
Member

Have you used tsc --explainFiles to see why these are in your program? I’m not totally against implementing exactly what the issue title says, but it looks like this may be giving you a clue that something is amiss with your project configuration.

@lgarron
Copy link
Author

lgarron commented Jan 4, 2022

Thanks for the suggestion! Unfortunately, that command does not actually list the files in question! 😳

> tsc --explainFiles ./tsconfig.json > /tmp/explainFiles.log
> cat /tmp/explainFiles.log | grep distes.d.ts # no results
> cat /tmp/explainFiles.log | grep /types | grep -v "node_modules" # no results

Full output:

error TS6054: File 'tsconfig.json' has an unsupported extension. The only supported extensions are '.ts', '.tsx', '.d.ts', '.cts', '.d.cts', '.mts', '.d.mts'.
  The file is in the program because:
    Root file specified for compilation
node_modules/typescript/lib/lib.d.ts
  Default library for target 'es3'
node_modules/typescript/lib/lib.es5.d.ts
  Library referenced via 'es5' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
  Library referenced via 'es5' from file 'node_modules/typescript/lib/lib.d.ts'
node_modules/typescript/lib/lib.es2015.d.ts
  Library referenced via 'es2015' from file 'node_modules/typescript/lib/lib.es2016.d.ts'
node_modules/typescript/lib/lib.es2016.d.ts
  Library referenced via 'es2016' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
node_modules/typescript/lib/lib.es2017.d.ts
  Library referenced via 'es2017' from file 'node_modules/typescript/lib/lib.es2018.d.ts'
node_modules/typescript/lib/lib.es2018.d.ts
  Library referenced via 'es2018' from file 'node_modules/typescript/lib/lib.es2019.d.ts'
node_modules/typescript/lib/lib.es2019.d.ts
  Library referenced via 'es2019' from file 'node_modules/typescript/lib/lib.es2020.d.ts'
node_modules/typescript/lib/lib.es2020.d.ts
  Library referenced via 'es2020' from file 'node_modules/@types/node/index.d.ts'
node_modules/typescript/lib/lib.dom.d.ts
  Library referenced via 'dom' from file 'node_modules/typescript/lib/lib.d.ts'
node_modules/typescript/lib/lib.webworker.importscripts.d.ts
  Library referenced via 'webworker.importscripts' from file 'node_modules/typescript/lib/lib.d.ts'
node_modules/typescript/lib/lib.scripthost.d.ts
  Library referenced via 'scripthost' from file 'node_modules/typescript/lib/lib.d.ts'
node_modules/typescript/lib/lib.es2015.core.d.ts
  Library referenced via 'es2015.core' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
node_modules/typescript/lib/lib.es2015.collection.d.ts
  Library referenced via 'es2015.collection' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
node_modules/typescript/lib/lib.es2015.generator.d.ts
  Library referenced via 'es2015.generator' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
node_modules/typescript/lib/lib.es2015.iterable.d.ts
  Library referenced via 'es2015.iterable' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
  Library referenced via 'es2015.iterable' from file 'node_modules/typescript/lib/lib.es2015.generator.d.ts'
  Library referenced via 'es2015.iterable' from file 'node_modules/typescript/lib/lib.es2018.asynciterable.d.ts'
  Library referenced via 'es2015.iterable' from file 'node_modules/typescript/lib/lib.es2019.object.d.ts'
  Library referenced via 'es2015.iterable' from file 'node_modules/typescript/lib/lib.es2020.string.d.ts'
  Library referenced via 'es2015.iterable' from file 'node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts'
node_modules/typescript/lib/lib.es2015.promise.d.ts
  Library referenced via 'es2015.promise' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
node_modules/typescript/lib/lib.es2015.proxy.d.ts
  Library referenced via 'es2015.proxy' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
node_modules/typescript/lib/lib.es2015.reflect.d.ts
  Library referenced via 'es2015.reflect' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
node_modules/typescript/lib/lib.es2015.symbol.d.ts
  Library referenced via 'es2015.symbol' from file 'node_modules/typescript/lib/lib.es2015.iterable.d.ts'
  Library referenced via 'es2015.symbol' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
  Library referenced via 'es2015.symbol' from file 'node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts'
  Library referenced via 'es2015.symbol' from file 'node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts'
  Library referenced via 'es2015.symbol' from file 'node_modules/typescript/lib/lib.es2018.asynciterable.d.ts'
  Library referenced via 'es2015.symbol' from file 'node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts'
node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts
  Library referenced via 'es2015.symbol.wellknown' from file 'node_modules/typescript/lib/lib.es2015.d.ts'
  Library referenced via 'es2015.symbol.wellknown' from file 'node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts'
node_modules/typescript/lib/lib.es2016.array.include.d.ts
  Library referenced via 'es2016.array.include' from file 'node_modules/typescript/lib/lib.es2016.d.ts'
node_modules/typescript/lib/lib.es2017.object.d.ts
  Library referenced via 'es2017.object' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts
  Library referenced via 'es2017.sharedmemory' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
node_modules/typescript/lib/lib.es2017.string.d.ts
  Library referenced via 'es2017.string' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
node_modules/typescript/lib/lib.es2017.intl.d.ts
  Library referenced via 'es2017.intl' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
node_modules/typescript/lib/lib.es2017.typedarrays.d.ts
  Library referenced via 'es2017.typedarrays' from file 'node_modules/typescript/lib/lib.es2017.d.ts'
node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts
  Library referenced via 'es2018.asyncgenerator' from file 'node_modules/typescript/lib/lib.es2018.d.ts'
node_modules/typescript/lib/lib.es2018.asynciterable.d.ts
  Library referenced via 'es2018.asynciterable' from file 'node_modules/typescript/lib/lib.es2018.d.ts'
  Library referenced via 'es2018.asynciterable' from file 'node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts'
  Library referenced via 'esnext.asynciterable' from file 'node_modules/@types/node/index.d.ts'
node_modules/typescript/lib/lib.es2018.intl.d.ts
  Library referenced via 'es2018.intl' from file 'node_modules/typescript/lib/lib.es2018.d.ts'
node_modules/typescript/lib/lib.es2018.promise.d.ts
  Library referenced via 'es2018.promise' from file 'node_modules/typescript/lib/lib.es2018.d.ts'
node_modules/typescript/lib/lib.es2018.regexp.d.ts
  Library referenced via 'es2018.regexp' from file 'node_modules/typescript/lib/lib.es2018.d.ts'
node_modules/typescript/lib/lib.es2019.array.d.ts
  Library referenced via 'es2019.array' from file 'node_modules/typescript/lib/lib.es2019.d.ts'
node_modules/typescript/lib/lib.es2019.object.d.ts
  Library referenced via 'es2019.object' from file 'node_modules/typescript/lib/lib.es2019.d.ts'
node_modules/typescript/lib/lib.es2019.string.d.ts
  Library referenced via 'es2019.string' from file 'node_modules/typescript/lib/lib.es2019.d.ts'
node_modules/typescript/lib/lib.es2019.symbol.d.ts
  Library referenced via 'es2019.symbol' from file 'node_modules/typescript/lib/lib.es2019.d.ts'
node_modules/typescript/lib/lib.es2020.bigint.d.ts
  Library referenced via 'es2020.bigint' from file 'node_modules/typescript/lib/lib.es2020.d.ts'
  Library referenced via 'esnext.bigint' from file 'node_modules/@types/node/index.d.ts'
node_modules/typescript/lib/lib.es2020.promise.d.ts
  Library referenced via 'es2020.promise' from file 'node_modules/typescript/lib/lib.es2020.d.ts'
node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts
  Library referenced via 'es2020.sharedmemory' from file 'node_modules/typescript/lib/lib.es2020.d.ts'
node_modules/typescript/lib/lib.es2020.string.d.ts
  Library referenced via 'es2020.string' from file 'node_modules/typescript/lib/lib.es2020.d.ts'
node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts
  Library referenced via 'es2020.symbol.wellknown' from file 'node_modules/typescript/lib/lib.es2020.d.ts'
node_modules/typescript/lib/lib.es2020.intl.d.ts
  Library referenced via 'es2020.intl' from file 'node_modules/typescript/lib/lib.es2020.d.ts'
node_modules/typescript/lib/lib.esnext.intl.d.ts
  Library referenced via 'esnext.intl' from file 'node_modules/@types/node/index.d.ts'
node_modules/@babel/types/lib/index.d.ts
  Imported via '@babel/types' from file 'node_modules/@types/babel__generator/index.d.ts' with packageId '@babel/types/lib/[email protected]'
  Imported via "@babel/types" from file 'node_modules/@babel/parser/typings/babel-parser.d.ts' with packageId '@babel/types/lib/[email protected]'
  Imported via "@babel/types" from file 'node_modules/@babel/parser/typings/babel-parser.d.ts' with packageId '@babel/types/lib/[email protected]'
  Imported via '@babel/types' from file 'node_modules/@types/babel__template/index.d.ts' with packageId '@babel/types/lib/[email protected]'
  Imported via '@babel/types' from file 'node_modules/@types/babel__traverse/index.d.ts' with packageId '@babel/types/lib/[email protected]'
  Imported via '@babel/types' from file 'node_modules/@types/babel__core/index.d.ts' with packageId '@babel/types/lib/[email protected]'
node_modules/@types/babel__generator/index.d.ts
  Imported via '@babel/generator' from file 'node_modules/@types/babel__core/index.d.ts' with packageId '@types/babel__generator/[email protected]'
  Entry point for implicit type library 'babel__generator' with packageId '@types/babel__generator/[email protected]'
node_modules/@babel/parser/typings/babel-parser.d.ts
  Imported via '@babel/parser' from file 'node_modules/@types/babel__core/index.d.ts' with packageId '@babel/parser/typings/[email protected]'
  Imported via '@babel/parser' from file 'node_modules/@types/babel__template/index.d.ts' with packageId '@babel/parser/typings/[email protected]'
node_modules/@types/babel__template/index.d.ts
  Imported via '@babel/template' from file 'node_modules/@types/babel__core/index.d.ts' with packageId '@types/babel__template/[email protected]'
  Entry point for implicit type library 'babel__template' with packageId '@types/babel__template/[email protected]'
node_modules/@types/babel__traverse/index.d.ts
  Imported via '@babel/traverse' from file 'node_modules/@types/babel__core/index.d.ts' with packageId '@types/babel__traverse/[email protected]'
  Entry point for implicit type library 'babel__traverse' with packageId '@types/babel__traverse/[email protected]'
node_modules/@types/babel__core/index.d.ts
  Entry point for implicit type library 'babel__core' with packageId '@types/babel__core/[email protected]'
node_modules/@types/node/assert.d.ts
  Referenced via 'assert.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/assert/strict.d.ts
  Referenced via 'assert/strict.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/globals.d.ts
  Referenced via 'globals.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/async_hooks.d.ts
  Referenced via 'async_hooks.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/buffer.d.ts
  Referenced via 'buffer.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/child_process.d.ts
  Referenced via 'child_process.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/cluster.d.ts
  Referenced via 'cluster.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/console.d.ts
  Referenced via 'console.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/constants.d.ts
  Referenced via 'constants.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/crypto.d.ts
  Referenced via 'crypto.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/dgram.d.ts
  Referenced via 'dgram.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/diagnostics_channel.d.ts
  Referenced via 'diagnostics_channel.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/dns.d.ts
  Referenced via 'dns.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/dns/promises.d.ts
  Referenced via 'dns/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
  Referenced via 'dns/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/domain.d.ts
  Referenced via 'domain.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/events.d.ts
  Referenced via 'events.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/fs.d.ts
  Referenced via 'fs.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/fs/promises.d.ts
  Referenced via 'fs/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/http.d.ts
  Referenced via 'http.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/http2.d.ts
  Referenced via 'http2.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/https.d.ts
  Referenced via 'https.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/inspector.d.ts
  Referenced via 'inspector.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/module.d.ts
  Referenced via 'module.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/net.d.ts
  Referenced via 'net.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/os.d.ts
  Referenced via 'os.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/path.d.ts
  Referenced via 'path.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/perf_hooks.d.ts
  Referenced via 'perf_hooks.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/process.d.ts
  Referenced via 'process.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/punycode.d.ts
  Referenced via 'punycode.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/querystring.d.ts
  Referenced via 'querystring.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/readline.d.ts
  Referenced via 'readline.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/repl.d.ts
  Referenced via 'repl.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/stream.d.ts
  Referenced via 'stream.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/stream/promises.d.ts
  Referenced via 'stream/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/stream/consumers.d.ts
  Referenced via 'stream/consumers.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/stream/web.d.ts
  Referenced via 'stream/web.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/string_decoder.d.ts
  Referenced via 'string_decoder.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/timers.d.ts
  Referenced via 'timers.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/timers/promises.d.ts
  Referenced via 'timers/promises.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/tls.d.ts
  Referenced via 'tls.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/trace_events.d.ts
  Referenced via 'trace_events.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/tty.d.ts
  Referenced via 'tty.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/url.d.ts
  Referenced via 'url.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/util.d.ts
  Referenced via 'util.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/v8.d.ts
  Referenced via 'v8.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/vm.d.ts
  Referenced via 'vm.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/wasi.d.ts
  Referenced via 'wasi.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/worker_threads.d.ts
  Referenced via 'worker_threads.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/zlib.d.ts
  Referenced via 'zlib.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/globals.global.d.ts
  Referenced via 'globals.global.d.ts' from file 'node_modules/@types/node/index.d.ts'
node_modules/@types/node/index.d.ts
  Type library referenced via 'node' from file 'node_modules/@types/graceful-fs/index.d.ts' with packageId '@types/node/[email protected]'
node_modules/@types/graceful-fs/index.d.ts
  Entry point for implicit type library 'graceful-fs' with packageId '@types/graceful-fs/[email protected]'
node_modules/@types/istanbul-lib-coverage/index.d.ts
  Entry point for implicit type library 'istanbul-lib-coverage' with packageId '@types/istanbul-lib-coverage/[email protected]'
  Imported via 'istanbul-lib-coverage' from file 'node_modules/@types/istanbul-lib-report/index.d.ts' with packageId '@types/istanbul-lib-coverage/[email protected]'
node_modules/@types/istanbul-lib-report/index.d.ts
  Entry point for implicit type library 'istanbul-lib-report' with packageId '@types/istanbul-lib-report/[email protected]'
  Imported via 'istanbul-lib-report' from file 'node_modules/@types/istanbul-reports/index.d.ts' with packageId '@types/istanbul-lib-report/[email protected]'
node_modules/@types/istanbul-reports/index.d.ts
  Entry point for implicit type library 'istanbul-reports' with packageId '@types/istanbul-reports/[email protected]'
node_modules/jest-diff/build/cleanupSemantic.d.ts
  Imported via './cleanupSemantic' from file 'node_modules/jest-diff/build/index.d.ts' with packageId 'jest-diff/build/[email protected]'
  Imported via './cleanupSemantic' from file 'node_modules/jest-diff/build/diffLines.d.ts' with packageId 'jest-diff/build/[email protected]'
  Imported via './cleanupSemantic' from file 'node_modules/jest-diff/build/printDiffs.d.ts' with packageId 'jest-diff/build/[email protected]'
node_modules/jest-diff/build/types.d.ts
  Imported via './types' from file 'node_modules/jest-diff/build/diffLines.d.ts' with packageId 'jest-diff/build/[email protected]'
  Imported via './types' from file 'node_modules/jest-diff/build/printDiffs.d.ts' with packageId 'jest-diff/build/[email protected]'
  Imported via './types' from file 'node_modules/jest-diff/build/index.d.ts' with packageId 'jest-diff/build/[email protected]'
  Imported via './types' from file 'node_modules/jest-diff/build/index.d.ts' with packageId 'jest-diff/build/[email protected]'
node_modules/jest-diff/build/diffLines.d.ts
  Imported via './diffLines' from file 'node_modules/jest-diff/build/index.d.ts' with packageId 'jest-diff/build/[email protected]'
node_modules/jest-diff/build/printDiffs.d.ts
  Imported via './printDiffs' from file 'node_modules/jest-diff/build/index.d.ts' with packageId 'jest-diff/build/[email protected]'
node_modules/jest-diff/build/index.d.ts
  Imported via "jest-diff" from file 'node_modules/@types/jest/index.d.ts' with packageId 'jest-diff/build/[email protected]'
node_modules/pretty-format/build/types.d.ts
  Imported via './types' from file 'node_modules/pretty-format/build/index.d.ts' with packageId 'pretty-format/build/[email protected]'
node_modules/pretty-format/build/index.d.ts
  Imported via 'pretty-format' from file 'node_modules/@types/jest/index.d.ts' with packageId 'pretty-format/build/[email protected]'
node_modules/@types/jest/index.d.ts
  Entry point for implicit type library 'jest' with packageId '@types/jest/[email protected]'
node_modules/@types/json-schema/index.d.ts
  Entry point for implicit type library 'json-schema' with packageId '@types/json-schema/[email protected]'
node_modules/@types/prettier/index.d.ts
  Entry point for implicit type library 'prettier' with packageId '@types/prettier/[email protected]'
node_modules/@types/stack-utils/index.d.ts
  Entry point for implicit type library 'stack-utils' with packageId '@types/stack-utils/[email protected]'
node_modules/@types/three/src/constants.d.ts
  Imported via './constants' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/core/BufferAttribute.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/core/InterleavedBuffer.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/materials/Material.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/textures/Texture.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../../constants' from file 'node_modules/@types/three/src/renderers/webgl/WebGLState.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../../constants' from file 'node_modules/@types/three/src/renderers/webgl/WebGLShadowMap.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/textures/DepthTexture.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/renderers/WebGLRenderTarget.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/core/BufferGeometry.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/textures/DataTexture3D.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/textures/DataTexture2DArray.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/animation/KeyframeTrack.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/animation/AnimationClip.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../../constants' from file 'node_modules/@types/three/src/animation/tracks/VectorKeyframeTrack.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../../constants' from file 'node_modules/@types/three/src/animation/tracks/StringKeyframeTrack.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../../constants' from file 'node_modules/@types/three/src/animation/tracks/QuaternionKeyframeTrack.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../../constants' from file 'node_modules/@types/three/src/animation/tracks/NumberKeyframeTrack.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../../constants' from file 'node_modules/@types/three/src/animation/tracks/ColorKeyframeTrack.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/animation/AnimationAction.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/animation/AnimationMixer.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/textures/CubeTexture.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/extras/ImageUtils.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/materials/MeshBasicMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/textures/CompressedTexture.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/textures/DataTexture.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/materials/ShaderMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/materials/MeshStandardMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/materials/MeshPhongMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/materials/MeshToonMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/materials/MeshNormalMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/materials/MeshLambertMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/materials/MeshDepthMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/materials/MeshMatcapMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/textures/VideoTexture.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../constants' from file 'node_modules/@types/three/src/textures/CanvasTexture.d.ts' with packageId '@types/three/src/[email protected]'
node_modules/@types/three/src/Three.Legacy.d.ts
  Imported via './Three.Legacy' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/[email protected]'
node_modules/@types/three/src/math/Quaternion.d.ts
  Imported via './Quaternion' from file 'node_modules/@types/three/src/math/Euler.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Quaternion' from file 'node_modules/@types/three/src/math/Vector3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Quaternion' from file 'node_modules/@types/three/src/core/Object3D.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Quaternion' from file 'node_modules/@types/three/src/math/Vector4.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Quaternion' from file 'node_modules/@types/three/src/core/BufferGeometry.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Quaternion' from file 'node_modules/@types/three/src/math/Matrix4.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Quaternion' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Quaternion' from file 'node_modules/@types/three/src/math/MathUtils.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/math/Euler.d.ts
  Imported via './Euler' from file 'node_modules/@types/three/src/math/Vector3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Euler' from file 'node_modules/@types/three/src/math/Quaternion.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Euler' from file 'node_modules/@types/three/src/core/Object3D.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Euler' from file 'node_modules/@types/three/src/math/Matrix4.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Euler' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/core/Layers.d.ts
  Imported via './Layers' from file 'node_modules/@types/three/src/core/Object3D.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './Layers' from file 'node_modules/@types/three/src/core/Raycaster.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './core/Layers' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/core/[email protected]'
node_modules/@types/three/src/scenes/Fog.d.ts
  Imported via './Fog' from file 'node_modules/@types/three/src/scenes/Scene.d.ts' with packageId '@types/three/src/scenes/[email protected]'
  Imported via './Fog' from file 'node_modules/@types/three/src/scenes/FogExp2.d.ts' with packageId '@types/three/src/scenes/[email protected]'
  Imported via './scenes/Fog' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/scenes/[email protected]'
node_modules/@types/three/src/math/Vector2.d.ts
  Imported via './Vector2' from file 'node_modules/@types/three/src/math/Triangle.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector2' from file 'node_modules/@types/three/src/textures/Texture.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Vector2' from file 'node_modules/@types/three/src/math/Vector4.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector2' from file 'node_modules/@types/three/src/lights/LightShadow.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector2' from file 'node_modules/@types/three/src/core/BufferGeometry.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector2' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector2' from file 'node_modules/@types/three/src/core/Raycaster.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Vector2' from file 'node_modules/@types/three/src/math/Vector3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../../math/Vector2' from file 'node_modules/@types/three/src/extras/core/Curve.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via '../../math/Vector2' from file 'node_modules/@types/three/src/extras/curves/EllipseCurve.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../../math/Vector2' from file 'node_modules/@types/three/src/extras/curves/CubicBezierCurve.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../../math/Vector2' from file 'node_modules/@types/three/src/extras/curves/LineCurve.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../../math/Vector2' from file 'node_modules/@types/three/src/extras/curves/QuadraticBezierCurve.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../../math/Vector2' from file 'node_modules/@types/three/src/extras/curves/SplineCurve.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../../math/Vector2' from file 'node_modules/@types/three/src/extras/core/Shape.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../../math/Vector2' from file 'node_modules/@types/three/src/extras/core/Path.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../../math/Vector2' from file 'node_modules/@types/three/src/extras/core/CurvePath.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../../math/Vector2' from file 'node_modules/@types/three/src/extras/core/ShapePath.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector2' from file 'node_modules/@types/three/src/geometries/ExtrudeGeometry.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector2' from file 'node_modules/@types/three/src/geometries/LatheGeometry.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector2' from file 'node_modules/@types/three/src/materials/MeshPhysicalMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector2' from file 'node_modules/@types/three/src/materials/MeshStandardMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector2' from file 'node_modules/@types/three/src/materials/MeshPhongMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector2' from file 'node_modules/@types/three/src/materials/MeshToonMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector2' from file 'node_modules/@types/three/src/materials/MeshNormalMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector2' from file 'node_modules/@types/three/src/materials/MeshMatcapMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector2' from file 'node_modules/@types/three/src/objects/Sprite.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Vector2' from file 'node_modules/@types/three/src/math/Box2.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Vector2' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/core/InterleavedBuffer.d.ts
  Imported via './InterleavedBuffer' from file 'node_modules/@types/three/src/core/InterleavedBufferAttribute.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './InterleavedBuffer' from file 'node_modules/@types/three/src/core/InstancedInterleavedBuffer.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './core/InterleavedBuffer' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/core/[email protected]'
node_modules/@types/three/src/core/InterleavedBufferAttribute.d.ts
  Imported via '../core/InterleavedBufferAttribute' from file 'node_modules/@types/three/src/math/Triangle.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './InterleavedBufferAttribute' from file 'node_modules/@types/three/src/core/InterleavedBuffer.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './InterleavedBufferAttribute' from file 'node_modules/@types/three/src/core/BufferGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/InterleavedBufferAttribute' from file 'node_modules/@types/three/src/math/Vector3.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './core/InterleavedBufferAttribute' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../../core/InterleavedBufferAttribute' from file 'node_modules/@types/three/src/renderers/webgl/WebGLAttributes.d.ts' with packageId '@types/three/src/core/[email protected]'
node_modules/@types/three/src/math/Triangle.d.ts
  Imported via './Triangle' from file 'node_modules/@types/three/src/math/Box3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Triangle' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/math/Box3.d.ts
  Imported via './Box3' from file 'node_modules/@types/three/src/math/Sphere.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Box3' from file 'node_modules/@types/three/src/math/Triangle.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Box3' from file 'node_modules/@types/three/src/math/Plane.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Box3' from file 'node_modules/@types/three/src/core/BufferGeometry.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via '../math/Box3' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Box3' from file 'node_modules/@types/three/src/math/Ray.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Box3' from file 'node_modules/@types/three/src/helpers/Box3Helper.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Box3' from file 'node_modules/@types/three/src/math/Frustum.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Box3' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/math/Sphere.d.ts
  Imported via './Sphere' from file 'node_modules/@types/three/src/math/Plane.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Sphere' from file 'node_modules/@types/three/src/math/Box3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Sphere' from file 'node_modules/@types/three/src/core/BufferGeometry.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Sphere' from file 'node_modules/@types/three/src/math/Ray.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Sphere' from file 'node_modules/@types/three/src/math/Frustum.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Sphere' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/math/Line3.d.ts
  Imported via './Line3' from file 'node_modules/@types/three/src/math/Plane.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Line3' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/math/Plane.d.ts
  Imported via './../math/Plane' from file 'node_modules/@types/three/src/materials/Material.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Plane' from file 'node_modules/@types/three/src/math/Box3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Plane' from file 'node_modules/@types/three/src/math/Triangle.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Plane' from file 'node_modules/@types/three/src/math/Sphere.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Plane' from file 'node_modules/@types/three/src/math/Ray.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Plane' from file 'node_modules/@types/three/src/helpers/PlaneHelper.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Plane' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Plane' from file 'node_modules/@types/three/src/math/Frustum.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/core/EventDispatcher.d.ts
  Imported via './../core/EventDispatcher' from file 'node_modules/@types/three/src/materials/Material.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/EventDispatcher' from file 'node_modules/@types/three/src/textures/Texture.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/EventDispatcher' from file 'node_modules/@types/three/src/renderers/WebGLRenderTarget.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './EventDispatcher' from file 'node_modules/@types/three/src/core/BufferGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/EventDispatcher' from file 'node_modules/@types/three/src/renderers/WebGLMultipleRenderTargets.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../../core/EventDispatcher' from file 'node_modules/@types/three/src/renderers/webxr/WebXRManager.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './EventDispatcher' from file 'node_modules/@types/three/src/core/Object3D.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/EventDispatcher' from file 'node_modules/@types/three/src/animation/AnimationMixer.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './core/EventDispatcher' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/core/[email protected]'
node_modules/@types/three/src/renderers/shaders/UniformsLib.d.ts
  Imported via './UniformsLib' from file 'node_modules/@types/three/src/renderers/shaders/ShaderLib.d.ts' with packageId '@types/three/src/renderers/shaders/[email protected]'
  Imported via '../renderers/shaders/UniformsLib' from file 'node_modules/@types/three/src/materials/ShaderMaterial.d.ts' with packageId '@types/three/src/renderers/shaders/[email protected]'
  Imported via './renderers/shaders/UniformsLib' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/shaders/[email protected]'
node_modules/@types/three/src/renderers/shaders/ShaderLib.d.ts
  Imported via './../renderers/shaders/ShaderLib' from file 'node_modules/@types/three/src/materials/Material.d.ts' with packageId '@types/three/src/renderers/shaders/[email protected]'
  Imported via './renderers/shaders/ShaderLib' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/shaders/[email protected]'
node_modules/@types/three/src/textures/Texture.d.ts
  Imported via '../textures/Texture' from file 'node_modules/@types/three/src/materials/Material.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via '../textures/Texture' from file 'node_modules/@types/three/src/scenes/Scene.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/renderers/WebGLRenderTarget.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './Texture' from file 'node_modules/@types/three/src/textures/DepthTexture.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via '../textures/Texture' from file 'node_modules/@types/three/src/renderers/WebGLMultipleRenderTargets.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via '../textures/Texture' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './Texture' from file 'node_modules/@types/three/src/textures/DataTexture3D.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './Texture' from file 'node_modules/@types/three/src/textures/DataTexture2DArray.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/renderers/WebGLCubeRenderTarget.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './Texture' from file 'node_modules/@types/three/src/textures/CubeTexture.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via '../textures/Texture' from file 'node_modules/@types/three/src/extras/ImageUtils.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via '../textures/Texture' from file 'node_modules/@types/three/src/extras/PMREMGenerator.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/materials/MeshBasicMaterial.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './Texture' from file 'node_modules/@types/three/src/textures/CompressedTexture.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './Texture' from file 'node_modules/@types/three/src/textures/DataTexture.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/loaders/TextureLoader.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/loaders/ObjectLoader.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/loaders/MaterialLoader.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/materials/SpriteMaterial.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/materials/PointsMaterial.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/materials/MeshPhysicalMaterial.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/materials/MeshStandardMaterial.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/materials/MeshPhongMaterial.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/materials/MeshToonMaterial.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/materials/MeshNormalMaterial.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/materials/MeshLambertMaterial.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/materials/MeshDepthMaterial.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/materials/MeshDistanceMaterial.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/Texture' from file 'node_modules/@types/three/src/materials/MeshMatcapMaterial.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './Texture' from file 'node_modules/@types/three/src/textures/VideoTexture.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './Texture' from file 'node_modules/@types/three/src/textures/CanvasTexture.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './textures/Texture' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/textures/[email protected]'
node_modules/@types/three/src/materials/Material.d.ts
  Imported via './../materials/Material' from file 'node_modules/@types/three/src/scenes/Scene.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via '../../materials/Material' from file 'node_modules/@types/three/src/renderers/webgl/WebGLState.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './../../materials/Material' from file 'node_modules/@types/three/src/renderers/webgl/WebGLRenderLists.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './../materials/Material' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './../materials/Material' from file 'node_modules/@types/three/src/core/Object3D.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './../materials/Material' from file 'node_modules/@types/three/src/objects/LineSegments.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './../materials/Material' from file 'node_modules/@types/three/src/objects/Line.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './Material' from file 'node_modules/@types/three/src/materials/MeshBasicMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './../materials/Material' from file 'node_modules/@types/three/src/objects/Mesh.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './../materials/Material' from file 'node_modules/@types/three/src/loaders/ObjectLoader.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './../materials/Material' from file 'node_modules/@types/three/src/loaders/MaterialLoader.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './Material' from file 'node_modules/@types/three/src/materials/ShadowMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './Material' from file 'node_modules/@types/three/src/materials/SpriteMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './Material' from file 'node_modules/@types/three/src/materials/ShaderMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './Material' from file 'node_modules/@types/three/src/materials/PointsMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './Material' from file 'node_modules/@types/three/src/materials/MeshStandardMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './Material' from file 'node_modules/@types/three/src/materials/MeshPhongMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './Material' from file 'node_modules/@types/three/src/materials/MeshToonMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './Material' from file 'node_modules/@types/three/src/materials/MeshNormalMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './Material' from file 'node_modules/@types/three/src/materials/MeshLambertMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './Material' from file 'node_modules/@types/three/src/materials/MeshDepthMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './Material' from file 'node_modules/@types/three/src/materials/MeshDistanceMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './Material' from file 'node_modules/@types/three/src/materials/MeshMatcapMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './Material' from file 'node_modules/@types/three/src/materials/LineBasicMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './Material' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './../materials/Material' from file 'node_modules/@types/three/src/objects/InstancedMesh.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './../materials/Material' from file 'node_modules/@types/three/src/objects/SkinnedMesh.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './../materials/Material' from file 'node_modules/@types/three/src/objects/LineLoop.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './../materials/Material' from file 'node_modules/@types/three/src/objects/Points.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './../../materials/Material' from file 'node_modules/@types/three/src/renderers/webgl/WebGLClipping.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './../../materials/Material' from file 'node_modules/@types/three/src/renderers/webgl/WebGLBindingStates.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './../../materials/Material' from file 'node_modules/@types/three/src/renderers/webgl/WebGLPrograms.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/scenes/Scene.d.ts
  Imported via './../scenes/Scene' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/scenes/[email protected]'
  Imported via './../../scenes/Scene' from file 'node_modules/@types/three/src/renderers/webgl/WebGLShadowMap.d.ts' with packageId '@types/three/src/scenes/[email protected]'
  Imported via './../../scenes/Scene' from file 'node_modules/@types/three/src/renderers/webgl/WebGLRenderLists.d.ts' with packageId '@types/three/src/scenes/[email protected]'
  Imported via './../scenes/Scene' from file 'node_modules/@types/three/src/core/Object3D.d.ts' with packageId '@types/three/src/scenes/[email protected]'
  Imported via './../scenes/Scene' from file 'node_modules/@types/three/src/cameras/CubeCamera.d.ts' with packageId '@types/three/src/scenes/[email protected]'
  Imported via '../scenes/Scene' from file 'node_modules/@types/three/src/extras/PMREMGenerator.d.ts' with packageId '@types/three/src/scenes/[email protected]'
  Imported via './../../scenes/Scene' from file 'node_modules/@types/three/src/renderers/webgl/WebGLPrograms.d.ts' with packageId '@types/three/src/scenes/[email protected]'
  Imported via './scenes/Scene' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/scenes/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLCapabilities.d.ts
  Imported via './WebGLCapabilities' from file 'node_modules/@types/three/src/renderers/webgl/WebGLExtensions.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLCapabilities' from file 'node_modules/@types/three/src/renderers/webgl/WebGLState.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLCapabilities' from file 'node_modules/@types/three/src/renderers/webgl/WebGLTextures.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLCapabilities' from file 'node_modules/@types/three/src/renderers/webgl/WebGLShadowMap.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './webgl/WebGLCapabilities' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLCapabilities' from file 'node_modules/@types/three/src/renderers/webgl/WebGLBufferRenderer.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './renderers/webgl/WebGLCapabilities' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLCapabilities' from file 'node_modules/@types/three/src/renderers/webgl/WebGLAttributes.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLCapabilities' from file 'node_modules/@types/three/src/renderers/webgl/WebGLLights.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLCapabilities' from file 'node_modules/@types/three/src/renderers/webgl/WebGLPrograms.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLCapabilities' from file 'node_modules/@types/three/src/renderers/webgl/WebGLBindingStates.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLExtensions.d.ts
  Imported via './webgl/WebGLExtensions' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLExtensions' from file 'node_modules/@types/three/src/renderers/webgl/WebGLTextures.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLExtensions' from file 'node_modules/@types/three/src/renderers/webgl/WebGLState.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLExtensions' from file 'node_modules/@types/three/src/renderers/webgl/WebGLBufferRenderer.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './renderers/webgl/WebGLExtensions' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLExtensions' from file 'node_modules/@types/three/src/renderers/webgl/WebGLLights.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLExtensions' from file 'node_modules/@types/three/src/renderers/webgl/WebGLPrograms.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLExtensions' from file 'node_modules/@types/three/src/renderers/webgl/WebGLBindingStates.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLShader.d.ts
  Imported via './WebGLShader' from file 'node_modules/@types/three/src/renderers/webgl/WebGLProgram.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './renderers/webgl/WebGLShader' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/math/Vector4.d.ts
  Imported via '../../math/Vector4' from file 'node_modules/@types/three/src/renderers/webgl/WebGLState.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector4' from file 'node_modules/@types/three/src/lights/LightShadow.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector4' from file 'node_modules/@types/three/src/renderers/WebGLRenderTarget.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector4' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Vector4' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLState.d.ts
  Imported via './WebGLState' from file 'node_modules/@types/three/src/renderers/webgl/WebGLTextures.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './webgl/WebGLState' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './renderers/webgl/WebGLState' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLProperties.d.ts
  Imported via './WebGLProperties' from file 'node_modules/@types/three/src/renderers/webgl/WebGLTextures.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './webgl/WebGLProperties' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLProperties' from file 'node_modules/@types/three/src/renderers/webgl/WebGLRenderLists.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLProperties' from file 'node_modules/@types/three/src/renderers/webgl/WebGLClipping.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './renderers/webgl/WebGLProperties' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLUtils.d.ts
  Imported via './WebGLUtils' from file 'node_modules/@types/three/src/renderers/webgl/WebGLTextures.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLTextures.d.ts
  Imported via './WebGLTextures' from file 'node_modules/@types/three/src/renderers/webgl/WebGLUniforms.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './renderers/webgl/WebGLTextures' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLUniforms.d.ts
  Imported via './WebGLUniforms' from file 'node_modules/@types/three/src/renderers/webgl/WebGLProgram.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './renderers/webgl/WebGLUniforms' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLProgram.d.ts
  Imported via './WebGLProgram' from file 'node_modules/@types/three/src/renderers/webgl/WebGLInfo.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLProgram' from file 'node_modules/@types/three/src/renderers/webgl/WebGLUniforms.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './webgl/WebGLProgram' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLProgram' from file 'node_modules/@types/three/src/renderers/webgl/WebGLRenderLists.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './renderers/webgl/WebGLProgram' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLProgram' from file 'node_modules/@types/three/src/renderers/webgl/WebGLPrograms.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLProgram' from file 'node_modules/@types/three/src/renderers/webgl/WebGLBindingStates.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLInfo.d.ts
  Imported via './webgl/WebGLInfo' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLInfo' from file 'node_modules/@types/three/src/renderers/webgl/WebGLTextures.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLInfo' from file 'node_modules/@types/three/src/renderers/webgl/WebGLBufferRenderer.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLInfo' from file 'node_modules/@types/three/src/renderers/webgl/WebGLGeometries.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './renderers/webgl/WebGLInfo' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLObjects.d.ts
  Imported via './WebGLObjects' from file 'node_modules/@types/three/src/renderers/webgl/WebGLShadowMap.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './renderers/webgl/WebGLObjects' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/textures/DepthTexture.d.ts
  Imported via './../textures/DepthTexture' from file 'node_modules/@types/three/src/renderers/WebGLRenderTarget.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './textures/DepthTexture' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/textures/[email protected]'
node_modules/@types/three/src/renderers/WebGLRenderTarget.d.ts
  Imported via '../renderers/WebGLRenderTarget' from file 'node_modules/@types/three/src/lights/LightShadow.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via './WebGLRenderTarget' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via './WebGLRenderTarget' from file 'node_modules/@types/three/src/renderers/WebGLCubeRenderTarget.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via '../renderers/WebGLRenderTarget' from file 'node_modules/@types/three/src/extras/PMREMGenerator.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via './WebGLRenderTarget' from file 'node_modules/@types/three/src/renderers/WebGLMultisampleRenderTarget.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via './renderers/WebGLRenderTarget' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/[email protected]'
node_modules/@types/three/src/lights/LightShadow.d.ts
  Imported via './LightShadow' from file 'node_modules/@types/three/src/lights/Light.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './LightShadow' from file 'node_modules/@types/three/src/lights/PointLightShadow.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './LightShadow' from file 'node_modules/@types/three/src/lights/DirectionalLightShadow.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './LightShadow' from file 'node_modules/@types/three/src/lights/SpotLightShadow.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './lights/LightShadow' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/lights/[email protected]'
node_modules/@types/three/src/lights/Light.d.ts
  Imported via '../../lights/Light' from file 'node_modules/@types/three/src/renderers/webgl/WebGLShadowMap.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './../lights/Light' from file 'node_modules/@types/three/src/lights/LightShadow.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './../lights/Light' from file 'node_modules/@types/three/src/helpers/SpotLightHelper.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './Light' from file 'node_modules/@types/three/src/lights/PointLight.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './Light' from file 'node_modules/@types/three/src/lights/HemisphereLight.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './Light' from file 'node_modules/@types/three/src/lights/DirectionalLight.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './Light' from file 'node_modules/@types/three/src/lights/SpotLight.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './Light' from file 'node_modules/@types/three/src/lights/RectAreaLight.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './Light' from file 'node_modules/@types/three/src/lights/AmbientLight.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './lights/Light' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './Light' from file 'node_modules/@types/three/src/lights/LightProbe.d.ts' with packageId '@types/three/src/lights/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLShadowMap.d.ts
  Imported via './webgl/WebGLShadowMap' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './renderers/webgl/WebGLShadowMap' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/objects/Group.d.ts
  Imported via './../../objects/Group' from file 'node_modules/@types/three/src/renderers/webgl/WebGLRenderLists.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via '../../objects/Group' from file 'node_modules/@types/three/src/renderers/webxr/WebXRManager.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './../objects/Group' from file 'node_modules/@types/three/src/core/Object3D.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './objects/Group' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via '../../objects/Group' from file 'node_modules/@types/three/src/renderers/webxr/WebXRController.d.ts' with packageId '@types/three/src/objects/[email protected]'
node_modules/@types/three/src/core/BufferGeometry.d.ts
  Imported via '../../core/BufferGeometry' from file 'node_modules/@types/three/src/renderers/webgl/WebGLRenderLists.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferGeometry' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './BufferGeometry' from file 'node_modules/@types/three/src/core/Object3D.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './BufferGeometry' from file 'node_modules/@types/three/src/core/InstancedBufferGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './core/BufferGeometry' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './BufferGeometry' from file 'node_modules/@types/three/src/core/InstancedBufferAttribute.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/BufferGeometry' from file 'node_modules/@types/three/src/geometries/BoxGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/BufferGeometry' from file 'node_modules/@types/three/src/geometries/CircleGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/BufferGeometry' from file 'node_modules/@types/three/src/geometries/CylinderGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferGeometry' from file 'node_modules/@types/three/src/geometries/PolyhedronGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/BufferGeometry' from file 'node_modules/@types/three/src/geometries/EdgesGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferGeometry' from file 'node_modules/@types/three/src/geometries/ExtrudeGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferGeometry' from file 'node_modules/@types/three/src/geometries/LatheGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferGeometry' from file 'node_modules/@types/three/src/geometries/PlaneGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferGeometry' from file 'node_modules/@types/three/src/geometries/RingGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferGeometry' from file 'node_modules/@types/three/src/geometries/ShapeGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferGeometry' from file 'node_modules/@types/three/src/geometries/SphereGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferGeometry' from file 'node_modules/@types/three/src/geometries/TorusGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferGeometry' from file 'node_modules/@types/three/src/geometries/TorusKnotGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferGeometry' from file 'node_modules/@types/three/src/geometries/TubeGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferGeometry' from file 'node_modules/@types/three/src/geometries/WireframeGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/BufferGeometry' from file 'node_modules/@types/three/src/objects/Line.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/BufferGeometry' from file 'node_modules/@types/three/src/objects/LineSegments.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/BufferGeometry' from file 'node_modules/@types/three/src/objects/Mesh.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/BufferGeometry' from file 'node_modules/@types/three/src/loaders/ObjectLoader.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferGeometry' from file 'node_modules/@types/three/src/loaders/BufferGeometryLoader.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/BufferGeometry' from file 'node_modules/@types/three/src/objects/Sprite.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/BufferGeometry' from file 'node_modules/@types/three/src/objects/InstancedMesh.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/BufferGeometry' from file 'node_modules/@types/three/src/objects/SkinnedMesh.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/BufferGeometry' from file 'node_modules/@types/three/src/objects/LineLoop.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/BufferGeometry' from file 'node_modules/@types/three/src/objects/Points.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../../core/BufferGeometry' from file 'node_modules/@types/three/src/renderers/webgl/WebGLGeometries.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../../core/BufferGeometry' from file 'node_modules/@types/three/src/renderers/webgl/WebGLBindingStates.d.ts' with packageId '@types/three/src/core/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLRenderLists.d.ts
  Imported via './webgl/WebGLRenderLists' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './renderers/webgl/WebGLRenderLists' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/WebGLMultipleRenderTargets.d.ts
  Imported via './WebGLMultipleRenderTargets' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via './renderers/WebGLMultipleRenderTargets' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/[email protected]'
node_modules/@types/three/src/renderers/webxr/WebXR.d.ts
  Imported via './WebXR' from file 'node_modules/@types/three/src/renderers/webxr/WebXRManager.d.ts' with packageId '@types/three/src/renderers/webxr/[email protected]'
  Imported via './webxr/WebXR' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/renderers/webxr/[email protected]'
  Imported via './renderers/webxr/WebXR' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webxr/[email protected]'
  Imported via './WebXR' from file 'node_modules/@types/three/src/renderers/webxr/WebXRController.d.ts' with packageId '@types/three/src/renderers/webxr/[email protected]'
node_modules/@types/three/src/renderers/webxr/WebXRManager.d.ts
  Imported via '../renderers/webxr/WebXRManager' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/renderers/webxr/[email protected]'
  Imported via './renderers/webxr/WebXRManager' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webxr/[email protected]'
node_modules/@types/three/src/textures/DataTexture3D.d.ts
  Imported via '../textures/DataTexture3D' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './textures/DataTexture3D' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/textures/[email protected]'
node_modules/@types/three/src/textures/DataTexture2DArray.d.ts
  Imported via '../textures/DataTexture2DArray' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './textures/DataTexture2DArray' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/textures/[email protected]'
node_modules/@types/three/src/renderers/WebGLRenderer.d.ts
  Imported via './../renderers/WebGLRenderer' from file 'node_modules/@types/three/src/core/Object3D.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via './../renderers/WebGLRenderer' from file 'node_modules/@types/three/src/materials/Material.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via '../renderers/WebGLRenderer' from file 'node_modules/@types/three/src/scenes/Scene.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via './../WebGLRenderer' from file 'node_modules/@types/three/src/renderers/webgl/WebGLProgram.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via '../WebGLRenderer' from file 'node_modules/@types/three/src/renderers/webgl/WebGLShadowMap.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via './WebGLRenderer' from file 'node_modules/@types/three/src/renderers/WebGLCubeRenderTarget.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via './../renderers/WebGLRenderer' from file 'node_modules/@types/three/src/cameras/CubeCamera.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via '../renderers/WebGLRenderer' from file 'node_modules/@types/three/src/extras/PMREMGenerator.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via './renderers/WebGLRenderer' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via './WebGLRenderer' from file 'node_modules/@types/three/src/renderers/WebGL1Renderer.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via './../WebGLRenderer' from file 'node_modules/@types/three/src/renderers/webgl/WebGLPrograms.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via '../WebGLRenderer' from file 'node_modules/@types/three/src/renderers/webgl/WebGLCubeMaps.d.ts' with packageId '@types/three/src/renderers/[email protected]'
node_modules/@types/three/src/math/Ray.d.ts
  Imported via './../math/Ray' from file 'node_modules/@types/three/src/core/Raycaster.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Ray' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/core/Raycaster.d.ts
  Imported via './Raycaster' from file 'node_modules/@types/three/src/core/Object3D.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './core/Raycaster' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Raycaster' from file 'node_modules/@types/three/src/objects/Line.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/Raycaster' from file 'node_modules/@types/three/src/objects/Line.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Raycaster' from file 'node_modules/@types/three/src/objects/Mesh.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/Raycaster' from file 'node_modules/@types/three/src/objects/Mesh.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Raycaster' from file 'node_modules/@types/three/src/objects/Sprite.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/Raycaster' from file 'node_modules/@types/three/src/objects/Sprite.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Raycaster' from file 'node_modules/@types/three/src/objects/LOD.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/Raycaster' from file 'node_modules/@types/three/src/objects/LOD.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Raycaster' from file 'node_modules/@types/three/src/objects/Points.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/Raycaster' from file 'node_modules/@types/three/src/objects/Points.d.ts' with packageId '@types/three/src/core/[email protected]'
node_modules/@types/three/src/math/Interpolant.d.ts
  Imported via '../Interpolant' from file 'node_modules/@types/three/src/math/interpolants/DiscreteInterpolant.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via '../Interpolant' from file 'node_modules/@types/three/src/math/interpolants/LinearInterpolant.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via '../Interpolant' from file 'node_modules/@types/three/src/math/interpolants/CubicInterpolant.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via '../Interpolant' from file 'node_modules/@types/three/src/math/interpolants/QuaternionLinearInterpolant.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Interpolant' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/math/interpolants/DiscreteInterpolant.d.ts
  Imported via './../math/interpolants/DiscreteInterpolant' from file 'node_modules/@types/three/src/animation/KeyframeTrack.d.ts' with packageId '@types/three/src/math/interpolants/[email protected]'
  Imported via './math/interpolants/DiscreteInterpolant' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/interpolants/[email protected]'
node_modules/@types/three/src/math/interpolants/LinearInterpolant.d.ts
  Imported via './../math/interpolants/LinearInterpolant' from file 'node_modules/@types/three/src/animation/KeyframeTrack.d.ts' with packageId '@types/three/src/math/interpolants/[email protected]'
  Imported via './math/interpolants/LinearInterpolant' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/interpolants/[email protected]'
node_modules/@types/three/src/math/interpolants/CubicInterpolant.d.ts
  Imported via './../math/interpolants/CubicInterpolant' from file 'node_modules/@types/three/src/animation/KeyframeTrack.d.ts' with packageId '@types/three/src/math/interpolants/[email protected]'
  Imported via './math/interpolants/CubicInterpolant' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/interpolants/[email protected]'
node_modules/@types/three/src/animation/KeyframeTrack.d.ts
  Imported via './KeyframeTrack' from file 'node_modules/@types/three/src/animation/AnimationClip.d.ts' with packageId '@types/three/src/animation/[email protected]'
  Imported via './../KeyframeTrack' from file 'node_modules/@types/three/src/animation/tracks/VectorKeyframeTrack.d.ts' with packageId '@types/three/src/animation/[email protected]'
  Imported via './../KeyframeTrack' from file 'node_modules/@types/three/src/animation/tracks/StringKeyframeTrack.d.ts' with packageId '@types/three/src/animation/[email protected]'
  Imported via './../KeyframeTrack' from file 'node_modules/@types/three/src/animation/tracks/QuaternionKeyframeTrack.d.ts' with packageId '@types/three/src/animation/[email protected]'
  Imported via './../KeyframeTrack' from file 'node_modules/@types/three/src/animation/tracks/NumberKeyframeTrack.d.ts' with packageId '@types/three/src/animation/[email protected]'
  Imported via './../KeyframeTrack' from file 'node_modules/@types/three/src/animation/tracks/ColorKeyframeTrack.d.ts' with packageId '@types/three/src/animation/[email protected]'
  Imported via './../KeyframeTrack' from file 'node_modules/@types/three/src/animation/tracks/BooleanKeyframeTrack.d.ts' with packageId '@types/three/src/animation/[email protected]'
  Imported via './animation/KeyframeTrack' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/animation/[email protected]'
node_modules/@types/three/src/objects/Bone.d.ts
  Imported via './../objects/Bone' from file 'node_modules/@types/three/src/animation/AnimationClip.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './../objects/Bone' from file 'node_modules/@types/three/src/helpers/SkeletonHelper.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './Bone' from file 'node_modules/@types/three/src/objects/Skeleton.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './objects/Bone' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/objects/[email protected]'
node_modules/@types/three/src/animation/AnimationClip.d.ts
  Imported via '../animation/AnimationClip' from file 'node_modules/@types/three/src/core/Object3D.d.ts' with packageId '@types/three/src/animation/[email protected]'
  Imported via './AnimationClip' from file 'node_modules/@types/three/src/animation/AnimationUtils.d.ts' with packageId '@types/three/src/animation/[email protected]'
  Imported via './AnimationClip' from file 'node_modules/@types/three/src/animation/AnimationMixer.d.ts' with packageId '@types/three/src/animation/[email protected]'
  Imported via './AnimationClip' from file 'node_modules/@types/three/src/animation/AnimationAction.d.ts' with packageId '@types/three/src/animation/[email protected]'
  Imported via './animation/AnimationClip' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/animation/[email protected]'
  Imported via './../animation/AnimationClip' from file 'node_modules/@types/three/src/loaders/AnimationLoader.d.ts' with packageId '@types/three/src/animation/[email protected]'
  Imported via './../animation/AnimationClip' from file 'node_modules/@types/three/src/loaders/ObjectLoader.d.ts' with packageId '@types/three/src/animation/[email protected]'
node_modules/@types/three/src/core/Object3D.d.ts
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/cameras/Camera.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/math/Box3.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/scenes/Scene.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/lights/Light.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../../core/Object3D' from file 'node_modules/@types/three/src/renderers/webgl/WebGLRenderLists.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/objects/Group.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './Object3D' from file 'node_modules/@types/three/src/core/Raycaster.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/objects/Bone.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/Object3D' from file 'node_modules/@types/three/src/animation/AnimationAction.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/Object3D' from file 'node_modules/@types/three/src/animation/AnimationMixer.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/audio/AudioListener.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/audio/Audio.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/cameras/CubeCamera.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './core/Object3D' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/helpers/SpotLightHelper.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/objects/Line.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/helpers/SkeletonHelper.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/helpers/PointLightHelper.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/helpers/HemisphereLightHelper.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/lights/DirectionalLight.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/helpers/DirectionalLightHelper.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/helpers/BoxHelper.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/objects/Mesh.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/helpers/ArrowHelper.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/lights/SpotLight.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/loaders/ObjectLoader.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/math/Frustum.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/objects/Sprite.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/objects/LOD.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/Object3D' from file 'node_modules/@types/three/src/objects/Points.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../../core/Object3D' from file 'node_modules/@types/three/src/renderers/webgl/WebGLGeometries.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../../core/Object3D' from file 'node_modules/@types/three/src/renderers/webgl/WebGLBindingStates.d.ts' with packageId '@types/three/src/core/[email protected]'
node_modules/@types/three/src/cameras/Camera.d.ts
  Imported via './../cameras/Camera' from file 'node_modules/@types/three/src/math/Vector3.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via '../cameras/Camera' from file 'node_modules/@types/three/src/scenes/Scene.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './../cameras/Camera' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './../../cameras/Camera' from file 'node_modules/@types/three/src/renderers/webgl/WebGLShadowMap.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './../cameras/Camera' from file 'node_modules/@types/three/src/lights/LightShadow.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './../../cameras/Camera' from file 'node_modules/@types/three/src/renderers/webgl/WebGLRenderLists.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via '../../cameras/Camera' from file 'node_modules/@types/three/src/renderers/webxr/WebXRManager.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './../cameras/Camera' from file 'node_modules/@types/three/src/core/Object3D.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './../cameras/Camera' from file 'node_modules/@types/three/src/core/Raycaster.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './Camera' from file 'node_modules/@types/three/src/cameras/PerspectiveCamera.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './Camera' from file 'node_modules/@types/three/src/cameras/StereoCamera.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './Camera' from file 'node_modules/@types/three/src/cameras/OrthographicCamera.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './cameras/Camera' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './../cameras/Camera' from file 'node_modules/@types/three/src/helpers/CameraHelper.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './../cameras/Camera' from file 'node_modules/@types/three/src/objects/LOD.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './../../cameras/Camera' from file 'node_modules/@types/three/src/renderers/webgl/WebGLClipping.d.ts' with packageId '@types/three/src/cameras/[email protected]'
node_modules/@types/three/src/math/Spherical.d.ts
  Imported via './Spherical' from file 'node_modules/@types/three/src/math/Vector3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Spherical' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/math/Cylindrical.d.ts
  Imported via './Cylindrical' from file 'node_modules/@types/three/src/math/Vector3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Cylindrical' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/math/Vector3.d.ts
  Imported via './Vector3' from file 'node_modules/@types/three/src/math/Matrix4.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Vector3' from file 'node_modules/@types/three/src/math/Quaternion.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Vector3' from file 'node_modules/@types/three/src/math/Euler.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector3' from file 'node_modules/@types/three/src/cameras/Camera.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector3' from file 'node_modules/@types/three/src/core/Object3D.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Vector3' from file 'node_modules/@types/three/src/math/Plane.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Vector3' from file 'node_modules/@types/three/src/math/Sphere.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Vector3' from file 'node_modules/@types/three/src/math/Box3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Vector3' from file 'node_modules/@types/three/src/math/Triangle.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Vector3' from file 'node_modules/@types/three/src/math/Line3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector3' from file 'node_modules/@types/three/src/core/BufferGeometry.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via '../math/Vector3' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector3' from file 'node_modules/@types/three/src/core/Raycaster.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Vector3' from file 'node_modules/@types/three/src/math/Ray.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector3' from file 'node_modules/@types/three/src/animation/AnimationClip.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Vector3' from file 'node_modules/@types/three/src/math/Spherical.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Vector3' from file 'node_modules/@types/three/src/math/Cylindrical.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Vector3' from file 'node_modules/@types/three/src/math/Matrix3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../../math/Vector3' from file 'node_modules/@types/three/src/extras/core/Curve.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../../math/Vector3' from file 'node_modules/@types/three/src/extras/curves/CatmullRomCurve3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../../math/Vector3' from file 'node_modules/@types/three/src/extras/curves/CubicBezierCurve3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../../math/Vector3' from file 'node_modules/@types/three/src/extras/curves/LineCurve3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../../math/Vector3' from file 'node_modules/@types/three/src/extras/curves/QuadraticBezierCurve3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector3' from file 'node_modules/@types/three/src/geometries/ExtrudeGeometry.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector3' from file 'node_modules/@types/three/src/geometries/TubeGeometry.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via '../math/Vector3' from file 'node_modules/@types/three/src/lights/HemisphereLight.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via '../math/Vector3' from file 'node_modules/@types/three/src/lights/DirectionalLight.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector3' from file 'node_modules/@types/three/src/helpers/ArrowHelper.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via '../math/Vector3' from file 'node_modules/@types/three/src/lights/SpotLight.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Vector3' from file 'node_modules/@types/three/src/math/SphericalHarmonics3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector3' from file 'node_modules/@types/three/src/materials/MeshDistanceMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Vector3' from file 'node_modules/@types/three/src/math/Frustum.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Vector3' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Vector3' from file 'node_modules/@types/three/src/objects/SkinnedMesh.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/math/Matrix4.d.ts
  Imported via './Matrix4' from file 'node_modules/@types/three/src/math/Matrix3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Matrix4' from file 'node_modules/@types/three/src/math/Euler.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Matrix4' from file 'node_modules/@types/three/src/math/Quaternion.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Matrix4' from file 'node_modules/@types/three/src/math/Vector3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix4' from file 'node_modules/@types/three/src/cameras/Camera.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix4' from file 'node_modules/@types/three/src/core/Object3D.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Matrix4' from file 'node_modules/@types/three/src/math/Box3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix4' from file 'node_modules/@types/three/src/core/InterleavedBufferAttribute.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Matrix4' from file 'node_modules/@types/three/src/math/Sphere.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Matrix4' from file 'node_modules/@types/three/src/math/Line3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Matrix4' from file 'node_modules/@types/three/src/math/Plane.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Matrix4' from file 'node_modules/@types/three/src/math/Vector4.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix4' from file 'node_modules/@types/three/src/lights/LightShadow.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix4' from file 'node_modules/@types/three/src/core/BufferGeometry.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Matrix4' from file 'node_modules/@types/three/src/math/Ray.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix4' from file 'node_modules/@types/three/src/core/BufferAttribute.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix4' from file 'node_modules/@types/three/src/helpers/SpotLightHelper.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix4' from file 'node_modules/@types/three/src/helpers/SkeletonHelper.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix4' from file 'node_modules/@types/three/src/helpers/PointLightHelper.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix4' from file 'node_modules/@types/three/src/helpers/HemisphereLightHelper.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix4' from file 'node_modules/@types/three/src/helpers/DirectionalLightHelper.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Matrix4' from file 'node_modules/@types/three/src/math/Frustum.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Matrix4' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix4' from file 'node_modules/@types/three/src/objects/InstancedMesh.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix4' from file 'node_modules/@types/three/src/objects/SkinnedMesh.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix4' from file 'node_modules/@types/three/src/objects/Skeleton.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/math/Matrix3.d.ts
  Imported via './../math/Matrix3' from file 'node_modules/@types/three/src/core/BufferAttribute.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Matrix3' from file 'node_modules/@types/three/src/math/Vector3.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix3' from file 'node_modules/@types/three/src/core/Object3D.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Matrix3' from file 'node_modules/@types/three/src/math/Vector2.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix3' from file 'node_modules/@types/three/src/core/InterleavedBufferAttribute.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Matrix3' from file 'node_modules/@types/three/src/math/Plane.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Matrix3' from file 'node_modules/@types/three/src/textures/Texture.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './Matrix3' from file 'node_modules/@types/three/src/math/Matrix4.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Matrix3' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/core/BufferAttribute.d.ts
  Imported via './../core/BufferAttribute' from file 'node_modules/@types/three/src/math/Color.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferAttribute' from file 'node_modules/@types/three/src/math/Box3.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferAttribute' from file 'node_modules/@types/three/src/math/Vector2.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './BufferAttribute' from file 'node_modules/@types/three/src/core/InterleavedBufferAttribute.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/BufferAttribute' from file 'node_modules/@types/three/src/math/Triangle.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferAttribute' from file 'node_modules/@types/three/src/math/Vector4.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './BufferAttribute' from file 'node_modules/@types/three/src/core/BufferGeometry.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferAttribute' from file 'node_modules/@types/three/src/math/Vector3.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './BufferAttribute' from file 'node_modules/@types/three/src/core/InstancedBufferAttribute.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './core/BufferAttribute' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../core/BufferAttribute' from file 'node_modules/@types/three/src/objects/InstancedMesh.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../../core/BufferAttribute' from file 'node_modules/@types/three/src/renderers/webgl/WebGLAttributes.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../../core/BufferAttribute' from file 'node_modules/@types/three/src/renderers/webgl/WebGLGeometries.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via './../../core/BufferAttribute' from file 'node_modules/@types/three/src/renderers/webgl/WebGLBindingStates.d.ts' with packageId '@types/three/src/core/[email protected]'
node_modules/@types/three/src/math/Color.d.ts
  Imported via './math/Color' from file 'node_modules/@types/three/src/utils.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/scenes/Fog.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via '../math/Color' from file 'node_modules/@types/three/src/materials/Material.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via '../math/Color' from file 'node_modules/@types/three/src/scenes/Scene.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/lights/Light.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via '../../math/Color' from file 'node_modules/@types/three/src/extras/core/ShapePath.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/lights/HemisphereLight.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/helpers/HemisphereLightHelper.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/materials/MeshBasicMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/helpers/Box3Helper.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via '../math/Color' from file 'node_modules/@types/three/src/helpers/AxesHelper.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/lights/SpotLight.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/materials/ShadowMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/materials/SpriteMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/materials/PointsMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/materials/MeshStandardMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/materials/MeshPhysicalMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/materials/MeshPhongMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/materials/MeshToonMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/materials/MeshLambertMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/materials/MeshMatcapMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/materials/LineBasicMaterial.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/Color' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/objects/InstancedMesh.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './../math/Color' from file 'node_modules/@types/three/src/scenes/FogExp2.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/utils.d.ts
  Imported via './utils' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/math/Color.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/scenes/Fog.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/materials/Material.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/renderers/WebGLRenderer.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/helpers/SpotLightHelper.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/lights/PointLight.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/helpers/PointLightHelper.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/lights/HemisphereLight.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/materials/MeshBasicMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/helpers/HemisphereLightHelper.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/helpers/GridHelper.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/helpers/PolarGridHelper.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/lights/DirectionalLight.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/helpers/DirectionalLightHelper.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/helpers/BoxHelper.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/helpers/ArrowHelper.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/lights/SpotLight.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/lights/RectAreaLight.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/lights/AmbientLight.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/lights/AmbientLightProbe.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/lights/HemisphereLightProbe.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/materials/ShadowMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/materials/SpriteMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/materials/PointsMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/materials/MeshStandardMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/materials/MeshPhongMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/materials/MeshToonMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/materials/MeshLambertMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/materials/MeshMatcapMaterial.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../utils' from file 'node_modules/@types/three/src/materials/LineBasicMaterial.d.ts' with packageId '@types/three/src/[email protected]'
node_modules/@types/three/src/animation/tracks/VectorKeyframeTrack.d.ts
  Imported via './animation/tracks/VectorKeyframeTrack' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/animation/tracks/[email protected]'
node_modules/@types/three/src/animation/tracks/StringKeyframeTrack.d.ts
  Imported via './animation/tracks/StringKeyframeTrack' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/animation/tracks/[email protected]'
node_modules/@types/three/src/animation/tracks/QuaternionKeyframeTrack.d.ts
  Imported via './animation/tracks/QuaternionKeyframeTrack' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/animation/tracks/[email protected]'
node_modules/@types/three/src/animation/tracks/NumberKeyframeTrack.d.ts
  Imported via './animation/tracks/NumberKeyframeTrack' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/animation/tracks/[email protected]'
node_modules/@types/three/src/animation/tracks/ColorKeyframeTrack.d.ts
  Imported via './animation/tracks/ColorKeyframeTrack' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/animation/tracks/[email protected]'
node_modules/@types/three/src/animation/tracks/BooleanKeyframeTrack.d.ts
  Imported via './animation/tracks/BooleanKeyframeTrack' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/animation/tracks/[email protected]'
node_modules/@types/three/src/animation/PropertyMixer.d.ts
  Imported via './animation/PropertyMixer' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/animation/[email protected]'
node_modules/@types/three/src/animation/PropertyBinding.d.ts
  Imported via './animation/PropertyBinding' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/animation/[email protected]'
node_modules/@types/three/src/animation/AnimationUtils.d.ts
  Imported via './animation/AnimationUtils' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/animation/[email protected]'
node_modules/@types/three/src/animation/AnimationObjectGroup.d.ts
  Imported via './animation/AnimationObjectGroup' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/animation/[email protected]'
  Imported via './AnimationObjectGroup' from file 'node_modules/@types/three/src/animation/AnimationMixer.d.ts' with packageId '@types/three/src/animation/[email protected]'
node_modules/@types/three/src/animation/AnimationAction.d.ts
  Imported via './AnimationAction' from file 'node_modules/@types/three/src/animation/AnimationMixer.d.ts' with packageId '@types/three/src/animation/[email protected]'
  Imported via './animation/AnimationAction' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/animation/[email protected]'
node_modules/@types/three/src/animation/AnimationMixer.d.ts
  Imported via './animation/AnimationMixer' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/animation/[email protected]'
  Imported via './AnimationMixer' from file 'node_modules/@types/three/src/animation/AnimationAction.d.ts' with packageId '@types/three/src/animation/[email protected]'
node_modules/@types/three/src/audio/AudioContext.d.ts
  Imported via './AudioContext' from file 'node_modules/@types/three/src/audio/AudioListener.d.ts' with packageId '@types/three/src/audio/[email protected]'
  Imported via './AudioContext' from file 'node_modules/@types/three/src/audio/Audio.d.ts' with packageId '@types/three/src/audio/[email protected]'
  Imported via './audio/AudioContext' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/audio/[email protected]'
node_modules/@types/three/src/audio/AudioListener.d.ts
  Imported via './audio/AudioListener' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/audio/[email protected]'
  Imported via './AudioListener' from file 'node_modules/@types/three/src/audio/PositionalAudio.d.ts' with packageId '@types/three/src/audio/[email protected]'
  Imported via './AudioListener' from file 'node_modules/@types/three/src/audio/Audio.d.ts' with packageId '@types/three/src/audio/[email protected]'
node_modules/@types/three/src/audio/Audio.d.ts
  Imported via './Audio' from file 'node_modules/@types/three/src/audio/PositionalAudio.d.ts' with packageId '@types/three/src/audio/[email protected]'
  Imported via './Audio' from file 'node_modules/@types/three/src/audio/AudioAnalyser.d.ts' with packageId '@types/three/src/audio/[email protected]'
  Imported via './audio/Audio' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/audio/[email protected]'
node_modules/@types/three/src/audio/PositionalAudio.d.ts
  Imported via './audio/PositionalAudio' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/audio/[email protected]'
node_modules/@types/three/src/audio/AudioAnalyser.d.ts
  Imported via './audio/AudioAnalyser' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/audio/[email protected]'
node_modules/@types/three/src/cameras/PerspectiveCamera.d.ts
  Imported via './PerspectiveCamera' from file 'node_modules/@types/three/src/cameras/StereoCamera.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './cameras/PerspectiveCamera' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './PerspectiveCamera' from file 'node_modules/@types/three/src/cameras/ArrayCamera.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './../cameras/PerspectiveCamera' from file 'node_modules/@types/three/src/lights/PointLightShadow.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './../cameras/PerspectiveCamera' from file 'node_modules/@types/three/src/lights/SpotLightShadow.d.ts' with packageId '@types/three/src/cameras/[email protected]'
node_modules/@types/three/src/cameras/StereoCamera.d.ts
  Imported via './cameras/StereoCamera' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/cameras/[email protected]'
node_modules/@types/three/src/cameras/OrthographicCamera.d.ts
  Imported via './cameras/OrthographicCamera' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/cameras/[email protected]'
  Imported via './../cameras/OrthographicCamera' from file 'node_modules/@types/three/src/lights/DirectionalLightShadow.d.ts' with packageId '@types/three/src/cameras/[email protected]'
node_modules/@types/three/src/textures/CubeTexture.d.ts
  Imported via './../textures/CubeTexture' from file 'node_modules/@types/three/src/renderers/WebGLCubeRenderTarget.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via '../textures/CubeTexture' from file 'node_modules/@types/three/src/extras/PMREMGenerator.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/CubeTexture' from file 'node_modules/@types/three/src/loaders/CubeTextureLoader.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './textures/CubeTexture' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/textures/[email protected]'
node_modules/@types/three/src/renderers/WebGLCubeRenderTarget.d.ts
  Imported via './../renderers/WebGLCubeRenderTarget' from file 'node_modules/@types/three/src/cameras/CubeCamera.d.ts' with packageId '@types/three/src/renderers/[email protected]'
  Imported via './renderers/WebGLCubeRenderTarget' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/[email protected]'
node_modules/@types/three/src/cameras/CubeCamera.d.ts
  Imported via './cameras/CubeCamera' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/cameras/[email protected]'
node_modules/@types/three/src/cameras/ArrayCamera.d.ts
  Imported via './cameras/ArrayCamera' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/cameras/[email protected]'
node_modules/@types/three/src/core/Uniform.d.ts
  Imported via './core/Uniform' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/core/[email protected]'
node_modules/@types/three/src/core/InstancedBufferGeometry.d.ts
  Imported via './core/InstancedBufferGeometry' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/InstancedBufferGeometry' from file 'node_modules/@types/three/src/loaders/ObjectLoader.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/InstancedBufferGeometry' from file 'node_modules/@types/three/src/loaders/BufferGeometryLoader.d.ts' with packageId '@types/three/src/core/[email protected]'
node_modules/@types/three/src/core/InstancedInterleavedBuffer.d.ts
  Imported via './core/InstancedInterleavedBuffer' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/core/[email protected]'
node_modules/@types/three/src/core/InstancedBufferAttribute.d.ts
  Imported via './core/InstancedBufferAttribute' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/core/[email protected]'
  Imported via '../core/InstancedBufferAttribute' from file 'node_modules/@types/three/src/objects/InstancedMesh.d.ts' with packageId '@types/three/src/core/[email protected]'
node_modules/@types/three/src/core/GLBufferAttribute.d.ts
  Imported via './core/GLBufferAttribute' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/core/[email protected]'
node_modules/@types/three/src/core/Clock.d.ts
  Imported via './core/Clock' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/core/[email protected]'
node_modules/@types/three/src/extras/core/Curve.d.ts
  Imported via './../core/Curve' from file 'node_modules/@types/three/src/extras/curves/EllipseCurve.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './../core/Curve' from file 'node_modules/@types/three/src/extras/curves/CatmullRomCurve3.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './../core/Curve' from file 'node_modules/@types/three/src/extras/curves/CubicBezierCurve.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './../core/Curve' from file 'node_modules/@types/three/src/extras/curves/CubicBezierCurve3.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './../core/Curve' from file 'node_modules/@types/three/src/extras/curves/LineCurve.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './../core/Curve' from file 'node_modules/@types/three/src/extras/curves/LineCurve3.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './../core/Curve' from file 'node_modules/@types/three/src/extras/curves/QuadraticBezierCurve.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './../core/Curve' from file 'node_modules/@types/three/src/extras/curves/QuadraticBezierCurve3.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './../core/Curve' from file 'node_modules/@types/three/src/extras/curves/SplineCurve.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './Curve' from file 'node_modules/@types/three/src/extras/core/CurvePath.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './extras/core/Curve' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './../extras/core/Curve' from file 'node_modules/@types/three/src/geometries/ExtrudeGeometry.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './../extras/core/Curve' from file 'node_modules/@types/three/src/geometries/TubeGeometry.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
node_modules/@types/three/src/extras/curves/EllipseCurve.d.ts
  Imported via './EllipseCurve' from file 'node_modules/@types/three/src/extras/curves/ArcCurve.d.ts' with packageId '@types/three/src/extras/curves/[email protected]'
  Imported via './EllipseCurve' from file 'node_modules/@types/three/src/extras/curves/Curves.d.ts' with packageId '@types/three/src/extras/curves/[email protected]'
node_modules/@types/three/src/extras/curves/ArcCurve.d.ts
  Imported via './ArcCurve' from file 'node_modules/@types/three/src/extras/curves/Curves.d.ts' with packageId '@types/three/src/extras/curves/[email protected]'
node_modules/@types/three/src/extras/curves/CatmullRomCurve3.d.ts
  Imported via './CatmullRomCurve3' from file 'node_modules/@types/three/src/extras/curves/Curves.d.ts' with packageId '@types/three/src/extras/curves/[email protected]'
node_modules/@types/three/src/extras/curves/CubicBezierCurve.d.ts
  Imported via './CubicBezierCurve' from file 'node_modules/@types/three/src/extras/curves/Curves.d.ts' with packageId '@types/three/src/extras/curves/[email protected]'
node_modules/@types/three/src/extras/curves/CubicBezierCurve3.d.ts
  Imported via './CubicBezierCurve3' from file 'node_modules/@types/three/src/extras/curves/Curves.d.ts' with packageId '@types/three/src/extras/curves/[email protected]'
node_modules/@types/three/src/extras/curves/LineCurve.d.ts
  Imported via './LineCurve' from file 'node_modules/@types/three/src/extras/curves/Curves.d.ts' with packageId '@types/three/src/extras/curves/[email protected]'
node_modules/@types/three/src/extras/curves/LineCurve3.d.ts
  Imported via './LineCurve3' from file 'node_modules/@types/three/src/extras/curves/Curves.d.ts' with packageId '@types/three/src/extras/curves/[email protected]'
node_modules/@types/three/src/extras/curves/QuadraticBezierCurve.d.ts
  Imported via './QuadraticBezierCurve' from file 'node_modules/@types/three/src/extras/curves/Curves.d.ts' with packageId '@types/three/src/extras/curves/[email protected]'
node_modules/@types/three/src/extras/curves/QuadraticBezierCurve3.d.ts
  Imported via './QuadraticBezierCurve3' from file 'node_modules/@types/three/src/extras/curves/Curves.d.ts' with packageId '@types/three/src/extras/curves/[email protected]'
node_modules/@types/three/src/extras/curves/SplineCurve.d.ts
  Imported via './SplineCurve' from file 'node_modules/@types/three/src/extras/curves/Curves.d.ts' with packageId '@types/three/src/extras/curves/[email protected]'
node_modules/@types/three/src/extras/curves/Curves.d.ts
  Imported via './extras/curves/Curves' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/extras/curves/[email protected]'
node_modules/@types/three/src/extras/core/CurvePath.d.ts
  Imported via './CurvePath' from file 'node_modules/@types/three/src/extras/core/Path.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './extras/core/CurvePath' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
node_modules/@types/three/src/extras/core/Path.d.ts
  Imported via './Path' from file 'node_modules/@types/three/src/extras/core/Shape.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './extras/core/Path' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
node_modules/@types/three/src/extras/core/Shape.d.ts
  Imported via './extras/core/Shape' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './Shape' from file 'node_modules/@types/three/src/extras/core/ShapePath.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './../extras/core/Shape' from file 'node_modules/@types/three/src/geometries/ExtrudeGeometry.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
  Imported via './../extras/core/Shape' from file 'node_modules/@types/three/src/geometries/ShapeGeometry.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
node_modules/@types/three/src/extras/core/ShapePath.d.ts
  Imported via './extras/core/ShapePath' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/extras/core/[email protected]'
node_modules/@types/three/src/extras/DataUtils.d.ts
  Imported via './extras/DataUtils' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/extras/[email protected]'
node_modules/@types/three/src/extras/ImageUtils.d.ts
  Imported via './extras/ImageUtils' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/extras/[email protected]'
node_modules/@types/three/src/extras/ShapeUtils.d.ts
  Imported via './extras/ShapeUtils' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/extras/[email protected]'
node_modules/@types/three/src/extras/PMREMGenerator.d.ts
  Imported via './extras/PMREMGenerator' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/extras/[email protected]'
node_modules/@types/three/src/geometries/BoxGeometry.d.ts
  Imported via './BoxGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/CircleGeometry.d.ts
  Imported via './CircleGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/CylinderGeometry.d.ts
  Imported via './CylinderGeometry' from file 'node_modules/@types/three/src/geometries/ConeGeometry.d.ts' with packageId '@types/three/src/geometries/[email protected]'
  Imported via './CylinderGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/ConeGeometry.d.ts
  Imported via './ConeGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/PolyhedronGeometry.d.ts
  Imported via './PolyhedronGeometry' from file 'node_modules/@types/three/src/geometries/DodecahedronGeometry.d.ts' with packageId '@types/three/src/geometries/[email protected]'
  Imported via './PolyhedronGeometry' from file 'node_modules/@types/three/src/geometries/IcosahedronGeometry.d.ts' with packageId '@types/three/src/geometries/[email protected]'
  Imported via './PolyhedronGeometry' from file 'node_modules/@types/three/src/geometries/OctahedronGeometry.d.ts' with packageId '@types/three/src/geometries/[email protected]'
  Imported via './PolyhedronGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
  Imported via './PolyhedronGeometry' from file 'node_modules/@types/three/src/geometries/TetrahedronGeometry.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/DodecahedronGeometry.d.ts
  Imported via './DodecahedronGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/EdgesGeometry.d.ts
  Imported via './EdgesGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/ExtrudeGeometry.d.ts
  Imported via './ExtrudeGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/IcosahedronGeometry.d.ts
  Imported via './IcosahedronGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/LatheGeometry.d.ts
  Imported via './LatheGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/OctahedronGeometry.d.ts
  Imported via './OctahedronGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/PlaneGeometry.d.ts
  Imported via './PlaneGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/RingGeometry.d.ts
  Imported via './RingGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/ShapeGeometry.d.ts
  Imported via './ShapeGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/SphereGeometry.d.ts
  Imported via './SphereGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/TetrahedronGeometry.d.ts
  Imported via './TetrahedronGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/TorusGeometry.d.ts
  Imported via './TorusGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/TorusKnotGeometry.d.ts
  Imported via './TorusKnotGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/TubeGeometry.d.ts
  Imported via './TubeGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/WireframeGeometry.d.ts
  Imported via './WireframeGeometry' from file 'node_modules/@types/three/src/geometries/Geometries.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/geometries/Geometries.d.ts
  Imported via './geometries/Geometries' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/geometries/[email protected]'
node_modules/@types/three/src/objects/Line.d.ts
  Imported via './Line' from file 'node_modules/@types/three/src/objects/LineSegments.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './../objects/Line' from file 'node_modules/@types/three/src/helpers/DirectionalLightHelper.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './../objects/Line' from file 'node_modules/@types/three/src/helpers/ArrowHelper.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './Line' from file 'node_modules/@types/three/src/objects/LineLoop.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './objects/Line' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/objects/[email protected]'
node_modules/@types/three/src/objects/LineSegments.d.ts
  Imported via '../objects/LineSegments' from file 'node_modules/@types/three/src/helpers/SpotLightHelper.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './../objects/LineSegments' from file 'node_modules/@types/three/src/helpers/SkeletonHelper.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './../objects/LineSegments' from file 'node_modules/@types/three/src/helpers/GridHelper.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via '../objects/LineSegments' from file 'node_modules/@types/three/src/helpers/PolarGridHelper.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './../objects/LineSegments' from file 'node_modules/@types/three/src/helpers/CameraHelper.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './../objects/LineSegments' from file 'node_modules/@types/three/src/helpers/BoxHelper.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './../objects/LineSegments' from file 'node_modules/@types/three/src/helpers/Box3Helper.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './../objects/LineSegments' from file 'node_modules/@types/three/src/helpers/PlaneHelper.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './../objects/LineSegments' from file 'node_modules/@types/three/src/helpers/AxesHelper.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './objects/LineSegments' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/objects/[email protected]'
node_modules/@types/three/src/helpers/SpotLightHelper.d.ts
  Imported via './helpers/SpotLightHelper' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/helpers/[email protected]'
node_modules/@types/three/src/helpers/SkeletonHelper.d.ts
  Imported via './helpers/SkeletonHelper' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/helpers/[email protected]'
node_modules/@types/three/src/lights/PointLightShadow.d.ts
  Imported via './PointLightShadow' from file 'node_modules/@types/three/src/lights/PointLight.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './lights/PointLightShadow' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/lights/[email protected]'
node_modules/@types/three/src/lights/PointLight.d.ts
  Imported via './../lights/PointLight' from file 'node_modules/@types/three/src/helpers/PointLightHelper.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './lights/PointLight' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/lights/[email protected]'
node_modules/@types/three/src/helpers/PointLightHelper.d.ts
  Imported via './helpers/PointLightHelper' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/helpers/[email protected]'
node_modules/@types/three/src/lights/HemisphereLight.d.ts
  Imported via './../lights/HemisphereLight' from file 'node_modules/@types/three/src/helpers/HemisphereLightHelper.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './lights/HemisphereLight' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/lights/[email protected]'
node_modules/@types/three/src/materials/MeshBasicMaterial.d.ts
  Imported via './../materials/MeshBasicMaterial' from file 'node_modules/@types/three/src/helpers/HemisphereLightHelper.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './MeshBasicMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/helpers/HemisphereLightHelper.d.ts
  Imported via './helpers/HemisphereLightHelper' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/helpers/[email protected]'
node_modules/@types/three/src/helpers/GridHelper.d.ts
  Imported via './helpers/GridHelper' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/helpers/[email protected]'
node_modules/@types/three/src/helpers/PolarGridHelper.d.ts
  Imported via './helpers/PolarGridHelper' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/helpers/[email protected]'
node_modules/@types/three/src/lights/DirectionalLightShadow.d.ts
  Imported via './DirectionalLightShadow' from file 'node_modules/@types/three/src/lights/DirectionalLight.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './lights/DirectionalLightShadow' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/lights/[email protected]'
node_modules/@types/three/src/lights/DirectionalLight.d.ts
  Imported via './../lights/DirectionalLight' from file 'node_modules/@types/three/src/helpers/DirectionalLightHelper.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './lights/DirectionalLight' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/lights/[email protected]'
node_modules/@types/three/src/helpers/DirectionalLightHelper.d.ts
  Imported via './helpers/DirectionalLightHelper' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/helpers/[email protected]'
node_modules/@types/three/src/helpers/CameraHelper.d.ts
  Imported via './helpers/CameraHelper' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/helpers/[email protected]'
node_modules/@types/three/src/helpers/BoxHelper.d.ts
  Imported via './helpers/BoxHelper' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/helpers/[email protected]'
node_modules/@types/three/src/helpers/Box3Helper.d.ts
  Imported via './helpers/Box3Helper' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/helpers/[email protected]'
node_modules/@types/three/src/helpers/PlaneHelper.d.ts
  Imported via './helpers/PlaneHelper' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/helpers/[email protected]'
node_modules/@types/three/src/objects/Mesh.d.ts
  Imported via './../objects/Mesh' from file 'node_modules/@types/three/src/helpers/ArrowHelper.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './Mesh' from file 'node_modules/@types/three/src/objects/InstancedMesh.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './Mesh' from file 'node_modules/@types/three/src/objects/SkinnedMesh.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './objects/Mesh' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/objects/[email protected]'
node_modules/@types/three/src/helpers/ArrowHelper.d.ts
  Imported via './helpers/ArrowHelper' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/helpers/[email protected]'
node_modules/@types/three/src/helpers/AxesHelper.d.ts
  Imported via './helpers/AxesHelper' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/helpers/[email protected]'
node_modules/@types/three/src/lights/SpotLightShadow.d.ts
  Imported via './lights/SpotLightShadow' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './SpotLightShadow' from file 'node_modules/@types/three/src/lights/SpotLight.d.ts' with packageId '@types/three/src/lights/[email protected]'
node_modules/@types/three/src/lights/SpotLight.d.ts
  Imported via './lights/SpotLight' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/lights/[email protected]'
node_modules/@types/three/src/lights/RectAreaLight.d.ts
  Imported via './lights/RectAreaLight' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/lights/[email protected]'
node_modules/@types/three/src/lights/AmbientLight.d.ts
  Imported via './lights/AmbientLight' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/lights/[email protected]'
node_modules/@types/three/src/math/SphericalHarmonics3.d.ts
  Imported via './../math/SphericalHarmonics3' from file 'node_modules/@types/three/src/lights/LightProbe.d.ts' with packageId '@types/three/src/math/[email protected]'
  Imported via './math/SphericalHarmonics3' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/lights/LightProbe.d.ts
  Imported via './LightProbe' from file 'node_modules/@types/three/src/lights/AmbientLightProbe.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './LightProbe' from file 'node_modules/@types/three/src/lights/HemisphereLightProbe.d.ts' with packageId '@types/three/src/lights/[email protected]'
  Imported via './lights/LightProbe' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/lights/[email protected]'
node_modules/@types/three/src/lights/AmbientLightProbe.d.ts
  Imported via './lights/AmbientLightProbe' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/lights/[email protected]'
node_modules/@types/three/src/lights/HemisphereLightProbe.d.ts
  Imported via './lights/HemisphereLightProbe' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/lights/[email protected]'
node_modules/@types/three/src/loaders/Loader.d.ts
  Imported via './Loader' from file 'node_modules/@types/three/src/loaders/LoadingManager.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './Loader' from file 'node_modules/@types/three/src/loaders/AnimationLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './Loader' from file 'node_modules/@types/three/src/loaders/CompressedTextureLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './Loader' from file 'node_modules/@types/three/src/loaders/DataTextureLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './Loader' from file 'node_modules/@types/three/src/loaders/CubeTextureLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './Loader' from file 'node_modules/@types/three/src/loaders/TextureLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './Loader' from file 'node_modules/@types/three/src/loaders/ObjectLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './Loader' from file 'node_modules/@types/three/src/loaders/MaterialLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './Loader' from file 'node_modules/@types/three/src/loaders/BufferGeometryLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './Loader' from file 'node_modules/@types/three/src/loaders/ImageLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './Loader' from file 'node_modules/@types/three/src/loaders/ImageBitmapLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './Loader' from file 'node_modules/@types/three/src/loaders/FileLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './loaders/Loader' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './Loader' from file 'node_modules/@types/three/src/loaders/AudioLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
node_modules/@types/three/src/loaders/LoadingManager.d.ts
  Imported via './LoadingManager' from file 'node_modules/@types/three/src/loaders/AnimationLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './LoadingManager' from file 'node_modules/@types/three/src/loaders/Loader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './LoadingManager' from file 'node_modules/@types/three/src/loaders/CompressedTextureLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './LoadingManager' from file 'node_modules/@types/three/src/loaders/DataTextureLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './LoadingManager' from file 'node_modules/@types/three/src/loaders/CubeTextureLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './LoadingManager' from file 'node_modules/@types/three/src/loaders/TextureLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './LoadingManager' from file 'node_modules/@types/three/src/loaders/ObjectLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './LoadingManager' from file 'node_modules/@types/three/src/loaders/MaterialLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './LoadingManager' from file 'node_modules/@types/three/src/loaders/BufferGeometryLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './loaders/LoadingManager' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './LoadingManager' from file 'node_modules/@types/three/src/loaders/ImageLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './LoadingManager' from file 'node_modules/@types/three/src/loaders/ImageBitmapLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './LoadingManager' from file 'node_modules/@types/three/src/loaders/FileLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
  Imported via './LoadingManager' from file 'node_modules/@types/three/src/loaders/AudioLoader.d.ts' with packageId '@types/three/src/loaders/[email protected]'
node_modules/@types/three/src/loaders/AnimationLoader.d.ts
  Imported via './loaders/AnimationLoader' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/loaders/[email protected]'
node_modules/@types/three/src/textures/CompressedTexture.d.ts
  Imported via './../textures/CompressedTexture' from file 'node_modules/@types/three/src/loaders/CompressedTextureLoader.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './textures/CompressedTexture' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/textures/[email protected]'
node_modules/@types/three/src/loaders/CompressedTextureLoader.d.ts
  Imported via './loaders/CompressedTextureLoader' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/loaders/[email protected]'
node_modules/@types/three/src/textures/DataTexture.d.ts
  Imported via './../textures/DataTexture' from file 'node_modules/@types/three/src/loaders/DataTextureLoader.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './../textures/DataTexture' from file 'node_modules/@types/three/src/objects/Skeleton.d.ts' with packageId '@types/three/src/textures/[email protected]'
  Imported via './textures/DataTexture' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/textures/[email protected]'
node_modules/@types/three/src/loaders/DataTextureLoader.d.ts
  Imported via './loaders/DataTextureLoader' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/loaders/[email protected]'
node_modules/@types/three/src/loaders/CubeTextureLoader.d.ts
  Imported via './loaders/CubeTextureLoader' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/loaders/[email protected]'
node_modules/@types/three/src/loaders/TextureLoader.d.ts
  Imported via './loaders/TextureLoader' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/loaders/[email protected]'
node_modules/@types/three/src/loaders/ObjectLoader.d.ts
  Imported via './loaders/ObjectLoader' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/loaders/[email protected]'
node_modules/@types/three/src/loaders/MaterialLoader.d.ts
  Imported via './loaders/MaterialLoader' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/loaders/[email protected]'
node_modules/@types/three/src/loaders/BufferGeometryLoader.d.ts
  Imported via './loaders/BufferGeometryLoader' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/loaders/[email protected]'
node_modules/@types/three/src/loaders/ImageLoader.d.ts
  Imported via './loaders/ImageLoader' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/loaders/[email protected]'
node_modules/@types/three/src/loaders/ImageBitmapLoader.d.ts
  Imported via './loaders/ImageBitmapLoader' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/loaders/[email protected]'
node_modules/@types/three/src/loaders/FileLoader.d.ts
  Imported via './loaders/FileLoader' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/loaders/[email protected]'
node_modules/@types/three/src/loaders/LoaderUtils.d.ts
  Imported via './loaders/LoaderUtils' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/loaders/[email protected]'
node_modules/@types/three/src/loaders/Cache.d.ts
  Imported via './loaders/Cache' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/loaders/[email protected]'
node_modules/@types/three/src/loaders/AudioLoader.d.ts
  Imported via './loaders/AudioLoader' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/loaders/[email protected]'
node_modules/@types/three/src/materials/ShadowMaterial.d.ts
  Imported via './ShadowMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/materials/SpriteMaterial.d.ts
  Imported via './SpriteMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/materials/ShaderMaterial.d.ts
  Imported via './ShaderMaterial' from file 'node_modules/@types/three/src/materials/RawShaderMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './ShaderMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/materials/RawShaderMaterial.d.ts
  Imported via './RawShaderMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/materials/PointsMaterial.d.ts
  Imported via './PointsMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/materials/MeshStandardMaterial.d.ts
  Imported via './MeshStandardMaterial' from file 'node_modules/@types/three/src/materials/MeshPhysicalMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './MeshStandardMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/materials/MeshPhysicalMaterial.d.ts
  Imported via './MeshPhysicalMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/materials/MeshPhongMaterial.d.ts
  Imported via './MeshPhongMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/materials/MeshToonMaterial.d.ts
  Imported via './MeshToonMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/materials/MeshNormalMaterial.d.ts
  Imported via './MeshNormalMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/materials/MeshLambertMaterial.d.ts
  Imported via './MeshLambertMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/materials/MeshDepthMaterial.d.ts
  Imported via './MeshDepthMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/materials/MeshDistanceMaterial.d.ts
  Imported via './MeshDistanceMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/materials/MeshMatcapMaterial.d.ts
  Imported via './MeshMatcapMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/materials/LineBasicMaterial.d.ts
  Imported via './LineBasicMaterial' from file 'node_modules/@types/three/src/materials/LineDashedMaterial.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via './LineBasicMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/materials/LineDashedMaterial.d.ts
  Imported via './LineDashedMaterial' from file 'node_modules/@types/three/src/materials/Materials.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/materials/Materials.d.ts
  Imported via './materials/Materials' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/materials/[email protected]'
  Imported via '../materials/Materials' from file 'node_modules/@types/three/src/objects/Sprite.d.ts' with packageId '@types/three/src/materials/[email protected]'
node_modules/@types/three/src/math/interpolants/QuaternionLinearInterpolant.d.ts
  Imported via './math/interpolants/QuaternionLinearInterpolant' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/interpolants/[email protected]'
node_modules/@types/three/src/objects/Sprite.d.ts
  Imported via './../objects/Sprite' from file 'node_modules/@types/three/src/math/Frustum.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './objects/Sprite' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/objects/[email protected]'
node_modules/@types/three/src/math/Frustum.d.ts
  Imported via './math/Frustum' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/math/Box2.d.ts
  Imported via './math/Box2' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/math/MathUtils.d.ts
  Imported via './math/MathUtils' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/math/[email protected]'
node_modules/@types/three/src/objects/LOD.d.ts
  Imported via './objects/LOD' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/objects/[email protected]'
node_modules/@types/three/src/objects/InstancedMesh.d.ts
  Imported via './objects/InstancedMesh' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/objects/[email protected]'
node_modules/@types/three/src/objects/Skeleton.d.ts
  Imported via './Skeleton' from file 'node_modules/@types/three/src/objects/SkinnedMesh.d.ts' with packageId '@types/three/src/objects/[email protected]'
  Imported via './objects/Skeleton' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/objects/[email protected]'
node_modules/@types/three/src/objects/SkinnedMesh.d.ts
  Imported via './objects/SkinnedMesh' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/objects/[email protected]'
node_modules/@types/three/src/objects/LineLoop.d.ts
  Imported via './objects/LineLoop' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/objects/[email protected]'
node_modules/@types/three/src/objects/Points.d.ts
  Imported via './objects/Points' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/objects/[email protected]'
node_modules/@types/three/src/renderers/WebGLMultisampleRenderTarget.d.ts
  Imported via './renderers/WebGLMultisampleRenderTarget' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/[email protected]'
node_modules/@types/three/src/renderers/WebGL1Renderer.d.ts
  Imported via './renderers/WebGL1Renderer' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/[email protected]'
node_modules/@types/three/src/renderers/shaders/UniformsUtils.d.ts
  Imported via './renderers/shaders/UniformsUtils' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/shaders/[email protected]'
node_modules/@types/three/src/renderers/shaders/ShaderChunk.d.ts
  Imported via './renderers/shaders/ShaderChunk' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/shaders/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLBufferRenderer.d.ts
  Imported via './renderers/webgl/WebGLBufferRenderer' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLClipping.d.ts
  Imported via './renderers/webgl/WebGLClipping' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLClipping' from file 'node_modules/@types/three/src/renderers/webgl/WebGLPrograms.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLCubeUVMaps.d.ts
  Imported via './renderers/webgl/WebGLCubeUVMaps' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLAttributes.d.ts
  Imported via './WebGLAttributes' from file 'node_modules/@types/three/src/renderers/webgl/WebGLGeometries.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
  Imported via './WebGLAttributes' from file 'node_modules/@types/three/src/renderers/webgl/WebGLBindingStates.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLGeometries.d.ts
  Imported via './renderers/webgl/WebGLGeometries' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLIndexedBufferRenderer.d.ts
  Imported via './renderers/webgl/WebGLIndexedBufferRenderer' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLLights.d.ts
  Imported via './renderers/webgl/WebGLLights' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLCubeMaps.d.ts
  Imported via './WebGLCubeMaps' from file 'node_modules/@types/three/src/renderers/webgl/WebGLPrograms.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLBindingStates.d.ts
  Imported via './WebGLBindingStates' from file 'node_modules/@types/three/src/renderers/webgl/WebGLPrograms.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webgl/WebGLPrograms.d.ts
  Imported via './renderers/webgl/WebGLPrograms' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webgl/[email protected]'
node_modules/@types/three/src/renderers/webxr/WebXRController.d.ts
  Imported via './renderers/webxr/WebXRController' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/renderers/webxr/[email protected]'
node_modules/@types/three/src/scenes/FogExp2.d.ts
  Imported via './scenes/FogExp2' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/scenes/[email protected]'
node_modules/@types/three/src/textures/VideoTexture.d.ts
  Imported via './textures/VideoTexture' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/textures/[email protected]'
node_modules/@types/three/src/textures/CanvasTexture.d.ts
  Imported via './textures/CanvasTexture' from file 'node_modules/@types/three/src/Three.d.ts' with packageId '@types/three/src/textures/[email protected]'
node_modules/@types/three/src/Three.d.ts
  Imported via './src/Three' from file 'node_modules/@types/three/index.d.ts' with packageId '@types/three/src/[email protected]'
  Imported via '../../Three' from file 'node_modules/@types/three/src/renderers/webgl/WebGLCubeUVMaps.d.ts' with packageId '@types/three/src/[email protected]'
node_modules/@types/three/index.d.ts
  Entry point for implicit type library 'three' with packageId '@types/three/[email protected]'
node_modules/@types/web-bluetooth/index.d.ts
  Entry point for implicit type library 'web-bluetooth' with packageId '@types/web-bluetooth/[email protected]'
node_modules/@types/yargs-parser/index.d.ts
  Imported via 'yargs-parser' from file 'node_modules/@types/yargs/index.d.ts' with packageId '@types/yargs-parser/[email protected]'
  Entry point for implicit type library 'yargs-parser' with packageId '@types/yargs-parser/[email protected]'
node_modules/@types/yargs/index.d.ts
  Entry point for implicit type library 'yargs' with packageId '@types/yargs/[email protected]'
node_modules/@types/yauzl/index.d.ts
  Entry point for implicit type library 'yauzl' with packageId '@types/yauzl/[email protected]'

@andrewbranch
Copy link
Member

tsc ./tsconfig.json would try to compile ./tsconfig.json to JavaScript, not use it as a project config—just tsc or tsc -p ./tsconfig.json would be the thing (or tsc -b for solution build), and then add --explainFiles to that.

@lgarron
Copy link
Author

lgarron commented Jan 4, 2022

By the way, I forgot to mention in the first post, but VSCode even exhibits this behaviour with all extensions disabled.

Do you happen to know a good way to tell where the VSCode completion is coming from, though?

@andrewbranch
Copy link
Member

That’s very weird. I don’t know without actually debugging the extension host. Maybe @mjbvz knows a way.

@lgarron
Copy link
Author

lgarron commented Jan 5, 2022

tsc ./tsconfig.json would try to compile ./tsconfig.json to JavaScript, not use it as a project config—just tsc or tsc -p ./tsconfig.json would be the thing (or tsc -b for solution build), and then add --explainFiles to that.

Aha! Looks like the culprit is https://github.com/cubing/cubing.js/blob/c8f3b13271297cb5909ca598c02f04ae335472e9/src/bin/order.js , which "accidentally" imports files from one level higher. If I get rid of that file, things work as expected. 😍 In our case, I can definitely work around this, although it's still kind of brittle (we have test files that reference the build files, which just "happen" to be in a different dir). Thanks so much for the --explainFiles tip, that will come in handy if I ever have related issues!

I think what I'll do is:

  • Update that file.
  • Add a CI test to make sure that tsc --explainFiles -p ./tsconfig.json doesn't include dist (What's another 10 seconds in the CI? 😛)

That said, I've spent long time debugging this, and I can definitely imagine patterns where it makes sense to import the build dir where you do want the types as well as you don't want the types. So I think it's reasonable to close this bug.

I think the more helpful things would be:

  • Exclude specific files from auto import suggestions #35395
  • a version of exclude that actually puts files/folders on a denylist rather than filtering the include list.
  • Maybe making --explainFiles more discoverable? I spent months trying to figure out for explanations of where import suggestions are coming from, and I kept getting stuck on the fact that VSCode itself provides no explanation.

@andrewbranch
Copy link
Member

It’s not my favorite thing in the world that an unambiguously bad auto-import experience is a roundabout diagnostic for a rogue import including your own output, but until we have some other way of gracefully handling that scenario (#40195), I think I’d lean toward calling this working as intended. Agreed that #35395 is probably a better solution and will bring up --explainFiles discoverability with the team.

@andrewbranch andrewbranch added Working as Intended The behavior described is the intended behavior; this is not a bug and removed Bug A bug in TypeScript Domain: Auto-import labels Jan 5, 2022
@andrewbranch andrewbranch removed this from the TypeScript 4.7.0 milestone Jan 5, 2022
@andrewbranch andrewbranch removed their assignment Jan 5, 2022
lgarron added a commit to cubing/cubing.js that referenced this issue Jan 5, 2022
…t autocompletions from dist.

This is a workaround to prevent a regression for microsoft/TypeScript#47184
If microsoft/TypeScript#35395 (Exclude specific files from auto import suggestions) is implemented, we should just use that instead.
lgarron added a commit to cubing/cubing.js that referenced this issue Jan 5, 2022
…t autocompletions from dist.

This is a workaround to prevent a regression for microsoft/TypeScript#47184
If microsoft/TypeScript#35395 (Exclude specific files from auto import suggestions) is implemented, we should just use that instead.
lgarron added a commit to cubing/cubing.js that referenced this issue Jan 5, 2022
…t autocompletions from dist.

This is a workaround to prevent a regression for microsoft/TypeScript#47184
If microsoft/TypeScript#35395 (Exclude specific files from auto import suggestions) is implemented, we should just use that instead.
lgarron added a commit to cubing/cubing.js that referenced this issue Jan 5, 2022
…t autocompletions from dist.

This is a workaround to prevent a regression for microsoft/TypeScript#47184
If microsoft/TypeScript#35395 (Exclude specific files from auto import suggestions) is implemented, we should just use that instead.
@typescript-bot
Copy link
Collaborator

This issue has been marked 'Working as Intended' and has seen no recent activity. It has been automatically closed for house-keeping purposes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Working as Intended The behavior described is the intended behavior; this is not a bug
Projects
None yet
Development

No branches or pull requests

5 participants