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 409B

1234567891011121314151617
  1. {
  2. "include": ["react/features/**/*.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. },
  14. "exclude": [
  15. "node_modules"
  16. ]
  17. }