tsconfig.json 327 B

123456789101112131415161718
  1. {
  2. "compilerOptions": {
  3. "target": "es5",
  4. "module": "commonjs",
  5. "allowJs": true,
  6. "noUnusedLocals": true,
  7. "noImplicitUseStrict": true,
  8. "importHelpers": true,
  9. "baseUrl": ".",
  10. "paths": {
  11. "fullcalendar": ["src/main"]
  12. }
  13. },
  14. "include": [
  15. "src/main.ts",
  16. "plugins/**/main.ts"
  17. ]
  18. }