tsconfig.json 601 B

12345678910111213141516171819202122232425
  1. {
  2. "compilerOptions": {
  3. "module": "esnext",
  4. "target": "esnext",
  5. "lib": ["es6", "dom"],
  6. "sourceMap": true,
  7. "jsx": "react",
  8. "moduleResolution": "node",
  9. "rootDir": "./src",
  10. "noImplicitReturns": true,
  11. "noImplicitThis": true,
  12. "noImplicitAny": true,
  13. "strictNullChecks": true,
  14. "experimentalDecorators": true,
  15. "emitDecoratorMetadata": true,
  16. "strict": false,
  17. "allowSyntheticDefaultImports": true,
  18. "typeRoots": ["./node_modules/@types", "./typings"]
  19. },
  20. "include": ["**/*"],
  21. "exclude": [
  22. "node_modules"
  23. ],
  24. "types": ["typePatches"]
  25. }