tsconfig.json 422 B

123456789101112131415161718192021
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "./",
  4. "paths": {
  5. "@/*": [ "src/*"],
  6. "@node_modules/*" : ["./node_modules/*"]},
  7. "outDir": "./dist/",
  8. "noImplicitAny": true,
  9. "target": "es6",
  10. "module": "CommonJS",
  11. "composite": true,
  12. // "jsx": "react",
  13. "allowJs": true,
  14. "allowSyntheticDefaultImports" : true,
  15. "esModuleInterop" : true
  16. },
  17. "exclude": [
  18. "./node_modules"
  19. ]
  20. }