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.

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. }