数字化园区前端项目
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

jsconfig.json 300B

123456789101112131415
  1. {
  2. "compilerOptions": {
  3. "target": "ES6",
  4. "module": "commonjs",
  5. "allowSyntheticDefaultImports": true,
  6. "baseUrl": "./",
  7. "paths": {
  8. "@/*": ["src/*"],
  9. "@api/*": ["src/api/*"]
  10. }
  11. },
  12. "exclude": [
  13. "node_modules"
  14. ]
  15. }