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.

tsconfig.json 1.0KB

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