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

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "allowJs": true,
  4. "checkJs": false,
  5. "noUnusedLocals": true,
  6. "noUnusedParameters": true,
  7. "noImplicitAny": true,
  8. "strict": true,
  9. "target": "es5",
  10. "jsx": "react",
  11. "lib": ["es2017", "dom"],
  12. "module": "esnext",
  13. "moduleResolution": "node",
  14. "typeRoots": ["./src/main/js/typings", "./node_modules/@types"]
  15. },
  16. "include": ["./src/main/js/**/*"]
  17. }