Ts-node : 구문 오류: 모듈 외부에서 가져오기 문을 사용할 수 없습니다.
프로젝트에서 최상위 레벨을 사용하려다가 모듈을 tsconig에서 esnext 또는 system으로 변경해야 하는 것을 알게 되었는데, 어떤 이유에서인지 my ts-node의 오류가 발생했습니다.그리고 저는 이미 module 유형을 넣었습니다. 플래그를 사용하려고 했습니다. --experimental-modules. 하지만 오류는 여전히 해결 방법을 알지 못합니다.
꾸러미json:
{
"name": "micro-hr",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"type": "module",
"scripts": {
"commit": "git-cz",
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored",
"start:dev": "ts-node-dev --experimental-modules --inspect --respawn --transpile-only --ignore-watch node_modules -r tsconfig-paths/register src/index.ts",
"start:debug": "node start --debug --watch",
"start:prod": "node dist/index.ts",
"test": "jest",
"lint": "eslint --fix",
"lint2": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js --config ./ormconfig.ts",
"migration:generate": "ts-node ./node_modules/typeorm/cli.js migration:generate -n"
},
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/helmet": "^0.0.48",
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"@types/pino": "^6.3.0",
"@types/pino-http": "^5.0.5",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-plugin-module-resolver": "^4.0.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"jest": "^26.4.2",
"pino-pretty": "^4.2.0",
"prettier": "^2.1.1",
"supertest": "^4.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0-pre.62",
"tsconfig-paths": "^3.9.0",
"tscpaths": "^0.0.9",
"typescript": "^4.0.2"
},
"dependencies": {
"amqplib": "^0.6.0",
"assert": "^2.0.0",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.3.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"envalid": "^6.0.2",
"express": "^4.17.1",
"extendable-error": "^0.1.7",
"helmet": "^4.1.0",
"nabbitmq": "^1.0.0",
"pg": "^8.3.3",
"pino": "^6.5.1",
"pino-http": "^5.2.0",
"reflect-metadata": "^0.1.13",
"spt-rabbit-helpers": "^1.0.6",
"tsyringe": "^4.3.0",
"typeorm": "^0.2.25"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}
tsconfig:
{
"compilerOptions": {
"target": "es2020",
"module": "esnext",
"allowJs": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"strictPropertyInitialization": false,
"moduleResolution": "node",
"baseUrl": "./src",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"typeRoots": ["node_modules/@types", "@types"]
},
"include": ["src", "__tests__"],
"exclude": ["node_modules"]
}
주:
import 'reflect-metadata';
import express from 'express';
import { RabbitServer } from 'spt-rabbit-helpers';
import validateEnv from 'utils/validateEnvs';
import {
RabbitMqConnectionFactory,
ConsumerFactory,
PublisherFactory,
RabbitMqConnection,
} from 'nabbitmq';
import { container, singleton } from 'tsyringe';
const factory = new RabbitMqConnectionFactory();
factory.setUri('amqp://localhost:5672');
const ConsumerConnection = await factory.newConnection();
const PublisherConnection = await factory.newConnection();
container.registerInstance('Consumer_Connection', ConsumerConnection);
container.registerInstance('Publisher_Connection', PublisherConnection);
ts-node(또는 일반 노드)를 실행하려면 사용해야 합니다."module": "commonjs", "target": "ES2017"
그렇지 않으면import
/export
진술서는 불법적으로 IIIF에 저장됩니다.
따라서 다음 내용을 포함하는 node.tsconfig.json이라는 다른 파일을 사용하는 것이 좋습니다.
{
"extends": "./tsconfig.json",
"compilerOptions": {
"target": "ES2017" // For NodeJS 8 compat, see https://www.typescriptlang.org/tsconfig#target for more info
}
}
그런 다음 ts-node를 실행합니다.--project ./node.tsconfig.json
많은 검색을 거쳐 이 솔루션이 완벽하게 작동한다는 것을 알게 되었습니다.
https://github.com/TypeStrong/ts-node/issues/922#issuecomment-673155000
추가하기만 하면 됩니다."ts-node"
당신을 가로막는tsconfig.json
아래와 같은 파일:
{ "ts-node": { "compilerOptions": { "module": "commonjs" } }, "compilerOptions": { "module": "esnext" } }
또한 ts-node 공식 페이지 "Viatsconfig.json" 부분에 문서화되어 있습니다.
덕분에 몇 시간을 절약할 수 있었습니다.
저도 같은 문제가 있었고, 저는 그것을 변경하여 고쳤습니다.module
안에tsconfig.json
로.commonjs
그리고 제거.module
키 입력package.json
:
// tsconfig.json
{
"module": "CommonJS",
}
사용 중인 경우React
TypeScript에는 "commonjs"를 설정할 수 없습니다.
tsconfig.json
{
"compilerOptions": {
"module": "esnext"
}
}
꾸러미제이손
{
"type": "module",
"scripts": {
"tsnode": "node --loader ts-node/esm --no-warnings"
},
"dependencies": {
"ts-node": "^10.4.0"
}
}
안녕하세요.ts
import * as os from "os"
console.log("os", os);
TypeScript 파일을 실행하는 두 가지 방법:
node --loader ts-node/esm --no-warnings hello.ts
npm run tsnode hello.ts
언급URL : https://stackoverflow.com/questions/63870080/ts-node-syntaxerror-cannot-use-import-statement-outside-a-module
'programing' 카테고리의 다른 글
Node.js - Mongoose와 관계 만들기 (0) | 2023.06.07 |
---|---|
wp 정의되지 않은 함수 add_infined_section (0) | 2023.06.07 |
현재 시스템을 가져옵니다.HttpContext의 Web.UI.Page? (0) | 2023.06.07 |
facet_grid 플롯의 스트립 텍스트를 어떻게 조작할 수 있습니까? (0) | 2023.06.07 |
'Microsoft' 파일 또는 어셈블리를 로드할 수 없습니다.보고서 뷰어.웹 양식' (0) | 2023.06.07 |