tsconfig.json 457 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "moduleResolution": "node",
  5. "strict": true,
  6. "importHelpers": true,
  7. "esModuleInterop": true,
  8. "allowSyntheticDefaultImports": true,
  9. "noImplicitThis": false,
  10. "declaration": true,
  11. "baseUrl": ".",
  12. "outDir": "./dist",
  13. "lib": ["esnext", "dom", "dom.iterable", "scripthost"],
  14. "paths": {
  15. "@/*": ["src/*"]
  16. }
  17. },
  18. "include": ["src"],
  19. "exclude": ["node_modules"]
  20. }