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.

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