やりたい事
- TypeScript1をtsconfigのpathsで経由でimportして、TypeScript2で利用
TypeScript1
1import { 2 IsIn, 3 IsNumberString, 4 IsPhoneNumber, 5 IsDateString, 6 IsBooleanString, 7 IsInt, 8 IsString, 9 Min, 10 Length, 11 IsEmail, 12 ValidateNested, 13 IsOptional, 14 Max, 15 Matches, 16 ArrayNotEmpty, 17 ArrayMaxSize, 18} from 'class-validator' 19 20export const fruits = [ 21 'apple', 22 'orange', 23] as const
TypeScript2
1import { fruits } from '~/fruits' 2import { 3 Entity, 4 PrimaryGeneratedColumn, 5 Column, 6 OneToOne, 7 ManyToOne, 8 ManyToMany, 9 JoinTable, 10 OneToMany, 11} from 'typeorm' 12〜略〜 13 14constructor() { 15 const f = fruits // NG 16} 17
発生している問題・エラーメッセージ
TypeScript1でimportしているnpmモジュールについて、These dependencies were not foundのビルドエラーが発生
ERROR Failed to compile with 31 errors friendly-errors 09:01:17 These dependencies were not found: friendly-errors 09:01:17 friendly-errors 09:01:17 * @apollo/federation in ../server/node_modules/@nestjs/graphql/dist/graphql-definitions.factory.js, ../server/node_modules/@nestjs/graphql/dist/federation/graphql-federation.factory.js friendly-errors 09:01:17 * @apollo/gateway in ../server/node_modules/@nestjs/graphql/dist/federation/graphql-gateway.module.js friendly-errors 09:01:17 * @apollo/subgraph in ../server/node_modules/@nestjs/graphql/dist/graphql-definitions.factory.js, ../server/node_modules/@nestjs/graphql/dist/federation/graphql-federation.factory.js friendly-errors 09:01:17 * @apollo/subgraph/dist/directives in ../server/node_modules/@nestjs/graphql/dist/graphql-schema.builder.js friendly-errors 09:01:17 * @nestjs/microservices in ../server/node_modules/@nestjs/core/nest-application.js friendly-errors 09:01:17 * @nestjs/microservices/microservices-module in ../server/node_modules/@nestjs/core/nest-application.js friendly-errors 09:01:17 * @nestjs/websockets/socket-module in ../server/node_modules/@nestjs/core/nest-application.js friendly-errors 09:01:17 * apollo-server-fastify in ../server/node_modules/@nestjs/graphql/dist/graphql.module.js, ../server/node_modules/@nestjs/graphql/dist/federation/graphql-federation.module.js friendly-errors 09:01:17 * cache-manager in ../server/node_modules/@nestjs/common/cache/cache.providers.js friendly-errors 09:01:17 * class-transformer/storage in ../server/node_modules/@nestjs/mapped-types/dist/type-helpers.utils.js friendly-errors 09:01:17 * fs in ../server/node_modules/@nestjs/graphql/dist/graphql-types.loader.js, ../server/node_modules/@nestjs/graphql/dist/schema-builder/helpers/file-system.helper.js and 14 others friendly-errors 09:01:17 * net in ../server/node_modules/express/lib/request.js friendly-errors 09:01:17 * ts-morph in ../server/node_modules/@nestjs/graphql/dist/graphql-ast.explorer.js
補足情報(FW/ツールのバージョンなど)
Nuxt: ^2.15.7
TypeScript: 4.2.4
※importしなければエラーにならないです。
TypeScript
1import { 2 IsIn, 3 IsNumberString, 4 IsPhoneNumber, 5 IsDateString, 6 IsBooleanString, 7 IsInt, 8 IsString, 9 Min, 10 Length, 11 IsEmail, 12 ValidateNested, 13 IsOptional, 14 Max, 15 Matches, 16 ArrayNotEmpty, 17 ArrayMaxSize, 18} from 'class-validator' 19 20export const fruits = [ 21 'apple', 22 'orange', 23] as const 24 25constructor() { 26 const f = fruits // OK 27}
> TypeScript1でimportしているnpmモジュールについて
TypeScript1にimport文など書かれていないのですが、エラー内容は間違いないのですか?
すみません、追記しました。
class-validatorの依存モジュールが軒並みエラーに出てしまいます。
逆に、class-validatorのimportなしでas constだけのexportでも問題は起きるのでしょうか?
(それなら問題ないとしたら、タイトルが間違っていることになります)
class-validatorのimportを消しても同じエラーが出ます
本当に「同じエラー」ですか?
(class-validatorのimportをしていないのに、それにまつわるエラーが出るとは、にわかには考えづらいです)
同じエラーでした。
TypeScript2側でimportしていたnpmモジュールに関するエラーかもしれません。
import {
Entity,
PrimaryGeneratedColumn,
Column,
OneToOne,
ManyToOne,
ManyToMany,
JoinTable,
OneToMany,
} from 'typeorm'
> TypeScript2側でimportしていたnpmモジュールに関するエラーかもしれません。
次々に後出しされては、何を信じていいのかわからなくなります。
外部のライブラリも読み込まない最低限にして、表題のエラーは再現するのでしょうか?
すみません。
TypeScript2側のimportを全部消して最低限にしてみたところ、エラーが解消されました。
as constの部分は問題なくビルド通ってるので、やはりタイトルが間違ってました。
もう一度よく見直します。ありがとうございました。
回答1件
あなたの回答
tips
プレビュー