npm run webpack
を実行したところ、
html
1> vaio@1.0.0 webpack C:\Users\VAIO 2> webpack 3 4Hash: b0a3c2adc9cc49bc329e 5Version: webpack 4.43.0 6Time: 3764ms 7Built at: 2020-06-11 5:28:58 8 3 assets 9Entrypoint index = test_npm.js 10[0] ./index.ts 131 bytes {0} [built] [1 error] 11 12ERROR in C:\Users\VAIO\index.ts 13./index.ts 14[tsl] ERROR in C:\Users\VAIO\index.ts(11,17) 15 TS2691: An import path cannot end with a '.ts' extension. Consider importing '.deps' instead. 16npm ERR! code ELIFECYCLE 17npm ERR! errno 2 18npm ERR! vaio@1.0.0 webpack: `webpack` 19npm ERR! Exit status 2 20npm ERR! 21npm ERR! Failed at the vaio@1.0.0 webpack script. 22npm ERR! This is probably not a problem with npm. There is likely additional logging output above. 23 24npm ERR! A complete log of this run can be found in: 25npm ERR! C:\Users\VAIO\AppData\Roaming\npm-cache\_logs\2020-06-10T20_28_58_969Z-debug.log
上記のエラーが出ました。
index.ts
html
1function sum(v1: number, v2: number): number { 2return v1+v2; 3} 4 5const n = 1; 6const s = 2; 7 8const result = sum(n, s); 9console.log(result); 10 11import sum from '.\deps.ts'; 12sum(1,2);
どのような編集を行えばいいのでしょうか。
deps.tsをdeps.depsと書き換えてみましたが、そんな拡張子は無いとエラーがでてしまいました 。
あなたの回答
tips
プレビュー