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

tsconfig.json 553B

12345678910111213141516171819
  1. {
  2. "include": ["react/features/**/*.ts", "react/features/**/*.tsx", "./custom.d.ts", "./globals.d.ts"],
  3. "compilerOptions": {
  4. "allowSyntheticDefaultImports": true,
  5. "module": "es6",
  6. "target": "es6",
  7. "jsx": "react",
  8. "lib": [ "webworker", "ES2020", "DOM" ],
  9. "noEmit": false,
  10. "moduleResolution": "Node",
  11. "strict": true,
  12. "noImplicitAny": true,
  13. "strictPropertyInitialization": false,
  14. "resolveJsonModule": true
  15. },
  16. "exclude": [
  17. "node_modules"
  18. ]
  19. }