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

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "allowJs": true,
  4. "checkJs": false,
  5. "noUnusedLocals": true,
  6. "noUnusedParameters": true,
  7. "strict": true,
  8. "strictFunctionTypes": false,
  9. "target": "esnext",
  10. "jsx": "react",
  11. "lib": ["dom", "es2017"],
  12. "module": "commonjs",
  13. "sourceMap": true,
  14. "experimentalDecorators": true,
  15. "emitDecoratorMetadata": true,
  16. "resolveJsonModule": true,
  17. "esModuleInterop": true,
  18. "noEmit": true,
  19. "skipLibCheck": true,
  20. "baseUrl": ".",
  21. "paths": {
  22. "*": ["./src/@types/*"]
  23. }
  24. },
  25. "include": ["./src/**/*"]
  26. }