京都のkintone用javascript
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
626B

  1. {
  2. "compilerOptions": {
  3. "sourceMap": true,
  4. // TSはECMAScript 5に変換
  5. "target": "ESNext",
  6. // TSのモジュールはES Modulesとして出力
  7. "module": "ES6",
  8. // 厳密モードとして設定
  9. "strict": true,
  10. "allowJs": true,
  11. "allowSyntheticDefaultImports": true,
  12. "moduleResolution": "node",
  13. "baseUrl": ".",
  14. "paths": {
  15. "@/*": [
  16. "src/*"
  17. ]
  18. },
  19. "jsx": "react-jsx",
  20. },
  21. "files": [
  22. "./node_modules/@kintone/dts-gen/kintone.d.ts",
  23. "./types/env.d.ts",
  24. ],
  25. "include": [
  26. "src/**/*"
  27. ],
  28. "exclude": [
  29. "dist",
  30. "node_modules"
  31. ]
  32. }