jsconfig.json 318 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "target": "<%- options.useBabel ? 'esnext' : 'es5' %>",
  4. "module": "esnext",
  5. "baseUrl": "./",
  6. "moduleResolution": "node",
  7. "paths": {
  8. "@/*": [
  9. "src/*"
  10. ]
  11. },
  12. "lib": [
  13. "esnext",
  14. "dom",
  15. "dom.iterable",
  16. "scripthost"
  17. ]
  18. }
  19. }