京都の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.

31 satır
587B

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