threepipe
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

tsconfig.json 973B

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