spring 基础框架建设

tsconfig.json 835B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "compileOnSave": false,
  3. "buildOnSave": false,
  4. "compilerOptions": {
  5. "baseUrl": ".",
  6. "outDir": "build",
  7. "module": "esnext",
  8. "target": "es6",
  9. "jsx": "react",
  10. "moduleResolution": "node",
  11. "allowSyntheticDefaultImports": true,
  12. "lib": ["es6", "dom"],
  13. "sourceMap": true,
  14. "allowJs": true,
  15. "rootDir": "./",
  16. "forceConsistentCasingInFileNames": true,
  17. "noImplicitReturns": true,
  18. "noImplicitThis": true,
  19. "noImplicitAny": false,
  20. "importHelpers": true,
  21. "strictNullChecks": true,
  22. "suppressImplicitAnyIndexErrors": true,
  23. "noUnusedLocals": true,
  24. "skipLibCheck": true,
  25. "paths": {
  26. "@/*": ["./src/*"],
  27. "ice": [".ice/index.ts"],
  28. "ice/*": [".ice/pages/*"]
  29. }
  30. },
  31. "include": ["src/*", ".ice"],
  32. "exclude": ["node_modules", "build", "public"]
  33. }