tsconfig.json
でmoduleを"CommonJS"以外、(例えばESNextとか)の値にした時に、webpack-dev-serverの実行でエラーが出ます。
// 現象 $ webpack-dev-server /Users/xxxxxx/Workspace/example-frontside/webpack.config.ts:1 import path from 'path'; ^^^^^^ SyntaxError: Cannot use import statement outside a module at wrapSafe (internal/modules/cjs/loader.js:1116:16) at Module._compile (internal/modules/cjs/loader.js:1164:27) :
webpackの設定ファイルをTypeScriptで記述しています。
Javascript(webpack.config.js)で同等のは正常に起動しました。
故に何か設定が足りないものと思っているのですが、Typescriptの方で
もし方法がありましたらあればご教授いただきたく。
よろしくお願いします。
※「cross-env TS_NODE_PROJECT="./tsconfig.json" webpack-dev-server」とかでもダメでした。
// ファイルの配置 ┣ src ┃ ┗ index.ts ┣ tsconfig.json ┣ webpack.config.ts ┗ package.json
json
1// package.json 2 : 3 "scripts": { 4 "start:dev": "webpack-dev-server", 5 } 6 : 7 // 関係ありそうなモジュールだけ記載。(@type/〜は省略) 8 "devDependencies": { 9 "ts-loader": "^7.0.5", 10 "ts-node": "^8.10.1", 11 "tsconfig-paths": "^3.9.0", 12 "tsconfig-paths-webpack-plugin": "^3.2.0", 13 "tslib": "^2.0.0", 14 "typescript": "^3.9.2", 15 "webpack": "^4.42.1", 16 "webpack-cli": "^3.3.11", 17 "webpack-dev-server": "^3.10.3" 18 } 19:
typescript
1// webpack.config.ts 2import * as path from 'path'; 3import { 4 Configuration as WebpackConfiguration 5} from 'webpack'; 6import { Configuration as WebpackDevServerConfiguration } from 'webpack-dev-server'; 7import { TsconfigPathsPlugin } from 'tsconfig-paths-webpack-plugin'; 8// import TsconfigPathsPlugin from 'tsconfig-paths-webpack-plugin'; // こちらもNG 9 10interface Configuration extends WebpackConfiguration { 11 devServer?: WebpackDevServerConfiguration; 12} 13 14const devServer: WebpackDevServerConfiguration = { 15 contentBase: path.resolve(__dirname, 'public'), 16 host: '0.0.0.0', 17 port: 3000, 18 disableHostCheck: true, 19 historyApiFallback: true, 20 compress: true, 21 hotOnly: true, 22 proxy: { 23 '/api': { 24 target: 'http://localhost:8080', 25 } 26 } 27}; 28 29export default (_env: never, args: Configuration) => { 30 const mode = args.mode || 'development'; 31 32 const config: Configuration = { 33 mode, 34 devtool: (mode === 'development') ? 'inline-source-map' : false, 35 devServer: (mode === 'development') ? devServer : undefined, 36 37 entry: { 38 main: './src' 39 }, 40 41 output: { 42 publicPath: '/', 43 path: path.resolve(__dirname, './public/dist'), 44 filename: '[name].js', 45 }, 46 47 resolve: { 48 alias: { 49 '~': path.resolve('src'), 50 }, 51 extensions: [ 52 '.js', 53 '.json', 54 '.ts', 55 ], 56 plugins: [new TsconfigPathsPlugin({ configFile: './tsconfig.json' })] 57 }, 58 59 module: { 60 rules: [ 61 { 62 test: /.tsx?$/, 63 loader: 'ts-loader', 64 exclude: '/node_modules/', 65 }, 66 ], 67 }, 68 }; 69 return config; 70};
json
1// tsconfig.json 2{ 3 "compilerOptions": { 4 "target": "ES5", 5 "module": "ESNext", 6 "moduleResolution": "node", 7 "sourceMap": true, 8 "strict": true, 9 "strictNullChecks": true, 10 "noImplicitAny": true, 11 "noImplicitThis": true, 12 "noImplicitReturns": true, 13 "noUnusedLocals": false, 14 "noUnusedParameters": false, 15 "esModuleInterop": true, 16 "forceConsistentCasingInFileNames": true, 17 "baseUrl": "./", 18 "paths": { 19 "~/*": [ 20 "src/*" 21 ] 22 }, 23 "types": [ 24 "@types/node" 25 ] 26 }, 27 "include": [ 28 "src/**/*" 29 ], 30 "exclude": [ 31 "node_modules" 32 ] 33}
"module": "commonjs" じゃないと ts-node が動かないので、webpack 専用の tsconfig ファイル tsconfig-for-webpack-config.json ってのを作る必要があるようです。
https://webpack.js.org/configuration/configuration-languages/
回答2件
あなたの回答
tips
プレビュー