threepipe
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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": ["../src/"]
  24. },
  25. "target": "ES2020",
  26. "strictNullChecks": true,
  27. "lib": [
  28. "es2020",
  29. "esnext",
  30. "dom"
  31. ],
  32. "jsx": "react"
  33. },
  34. "include": [
  35. "./**/*.ts",
  36. "./**/*.tsx"
  37. ],
  38. "exclude": [
  39. "node_modules",
  40. "../dist/**/*",
  41. "../src/**/*",
  42. "**/*.spec.ts"
  43. ]
  44. }