threepipe
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 1003B

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