Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

tsconfig.json 569B

12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "allowJs": true,
  4. "checkJs": false,
  5. "noUnusedLocals": true,
  6. "noUnusedParameters": true,
  7. "noImplicitAny": true,
  8. "strict": true,
  9. "strictFunctionTypes": false,
  10. "target": "es5",
  11. "jsx": "react",
  12. "lib": ["es2017", "dom"],
  13. "module": "esnext",
  14. "moduleResolution": "node",
  15. "baseUrl": "./",
  16. "paths": {
  17. "*": ["../sonar-web/node_modules/@types/*", "./node_modules/@types/*", "*"]
  18. },
  19. "sourceMap": true
  20. },
  21. "include": ["./src/main/js/**/*", "../sonar-web/src/main/js/app/types.d.ts"]
  22. }