threepipe
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

tsconfig.json 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "./",
  4. "allowJs": false,
  5. "checkJs": false,
  6. "skipLibCheck": true,
  7. "allowSyntheticDefaultImports": true,
  8. "experimentalDecorators": true,
  9. "isolatedModules": false,
  10. "module": "es2020",
  11. "noImplicitAny": true,
  12. "declaration": false,
  13. "noImplicitThis": true,
  14. "noUnusedLocals": true,
  15. "noUnusedParameters": true,
  16. "removeComments": false,
  17. "preserveConstEnums": true,
  18. "moduleResolution": "node",
  19. "emitDecoratorMetadata": true,
  20. "sourceMap": false,
  21. "paths": {
  22. "@threepipe/plugin-*": ["../plugins/*/src"],
  23. "@threepipe/plugins-*": ["../plugins/*/src"],
  24. "threepipe": ["../src/"]
  25. },
  26. "target": "ES2020",
  27. "strictNullChecks": true,
  28. "lib": [
  29. "es2020",
  30. "esnext",
  31. "dom"
  32. ],
  33. "jsx": "react"
  34. },
  35. "include": [
  36. "./**/*.ts",
  37. "./**/*.tsx"
  38. ],
  39. "exclude": [
  40. "node_modules",
  41. "../dist/**/*",
  42. "../src/**/*",
  43. "**/*.spec.ts"
  44. ]
  45. }