BBCode <-> Mobiledoc converter
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

tsconfig.json 422 B

123456789101112131415161718
  1. {
  2. "include": ["src", "types"],
  3. "compilerOptions": {
  4. "module": "esnext",
  5. "lib": ["dom", "esnext"],
  6. "importHelpers": true,
  7. "declaration": true,
  8. "sourceMap": true,
  9. "strict": true,
  10. "noUnusedLocals": true,
  11. "noUnusedParameters": true,
  12. "noImplicitReturns": true,
  13. "noFallthroughCasesInSwitch": true,
  14. "moduleResolution": "node",
  15. "jsx": "react",
  16. "esModuleInterop": true
  17. }
  18. }