a small private-blog service

tsconfig.json 800B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "commonjs",
  5. "moduleResolution": "node",
  6. "sourceMap": true,
  7. "emitDecoratorMetadata": true,
  8. "experimentalDecorators": true,
  9. "removeComments": false,
  10. "noImplicitAny": false,
  11. "skipLibCheck": true,
  12. "suppressImplicitAnyIndexErrors": true,
  13. "outDir": "target/www/app",
  14. "lib": ["es7", "dom"],
  15. "typeRoots": [
  16. "node_modules/@types"
  17. ],
  18. "baseUrl": "./",
  19. "paths": {
  20. "app/*": ["src/main/webapp/app/*"]
  21. },
  22. "importHelpers": true,
  23. "allowJs": true
  24. },
  25. "include": [
  26. "src/main/webapp/app",
  27. "src/test/javascript/"
  28. ],
  29. "exclude": [
  30. "node_modules"
  31. ]
  32. }