0
내 서버 .ts
모듈을 설치하고 node_modules
을 검사했지만 파일에 모듈 및 입력을 찾을 수 없다는 불만이 있습니다. Typescript가 모듈을 찾을 수 없습니다.
이
내 프로젝트 구조입니다 : screenshot오류 내가 얻을 : screenshot
tsconfig.json
:
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"target": "es5",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noImplicitAny": false
},
"exclude": [
"node_modules",
"typings"
],
"filesGlob": [
"**/*.ts",
"typings/main",
"./typings/index.d.ts"
]
}
'tscg'를 사용하여 코드를 컴파일하고 있습니까? –
아니오 .............................. –
https://www.npmjs.com/package/typescript-with- 글로브 –