threepipe
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. "noImplicitOverride": false,
  13. "declaration": false,
  14. "noImplicitThis": true,
  15. "noUnusedLocals": true,
  16. "noUnusedParameters": true,
  17. "removeComments": false,
  18. "preserveConstEnums": true,
  19. "moduleResolution": "node",
  20. "skipDefaultLibCheck": true,
  21. "emitDecoratorMetadata": true,
  22. "sourceMap": false,
  23. "paths": {
  24. "@threepipe/plugin-*": ["../plugins/*/src"],
  25. "@threepipe/plugins-*": ["../plugins/*/src"],
  26. "threepipe": ["../src/"]
  27. },
  28. "esModuleInterop": true,
  29. "target": "ES2020",
  30. "strictNullChecks": true,
  31. "lib": [
  32. "es2020",
  33. "esnext",
  34. "dom"
  35. ],
  36. "jsx": "react"
  37. },
  38. "include": [
  39. "./**/*.ts",
  40. "./**/*.tsx"
  41. ],
  42. "exclude": [
  43. "node_modules",
  44. "../dist/**/*",
  45. "../src/**/*",
  46. "**/*.spec.ts"
  47. ]
  48. }