tsconfig.json 983 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "compilerOptions": {
  3. "module": "es2020",
  4. "target": "esnext",
  5. "types": [
  6. "bootstrap-select",
  7. "jquery"
  8. ],
  9. "paths": {
  10. "@models/*": ["../src/models/*"]
  11. },
  12. "lib": ["es5", "es6", "dom"],
  13. "sourceMap": true,
  14. "declaration": true,
  15. "declarationMap": true,
  16. "noUncheckedIndexedAccess": true,
  17. "strict": true,
  18. "jsx": "react-jsx",
  19. "noUncheckedSideEffectImports": true,
  20. "moduleDetection": "force",
  21. "skipLibCheck": true,
  22. "outDir": "../build/front",
  23. "experimentalDecorators": true,
  24. "noImplicitAny": true,
  25. "strictNullChecks": true,
  26. "strictFunctionTypes": true,
  27. "strictBindCallApply": true,
  28. "strictPropertyInitialization": true,
  29. "noImplicitThis": true,
  30. "alwaysStrict": true,
  31. "esModuleInterop": true,
  32. "removeComments": true,
  33. "noUnusedLocals": true,
  34. "noUnusedParameters": true,
  35. "noImplicitReturns": true,
  36. "forceConsistentCasingInFileNames": true
  37. }
  38. }