tsconfig.json 395 B

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