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

tsconfig.json 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. "paths": {
  28. "three-mesh-halfedge": ["./src/three-mesh-halfedge"],
  29. "three": ["threepipe"],
  30. },
  31. "lib": [
  32. "es2020",
  33. "esnext",
  34. "dom"
  35. ]
  36. },
  37. "include": [
  38. "src/**/*"
  39. ],
  40. "exclude": [
  41. "node_modules",
  42. "**/*.spec.ts",
  43. "dist"
  44. ]
  45. }