tsconfig.json 385 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "noImplicitAny": false,
  5. "rootDir": "./",
  6. "outDir": "dist",
  7. "sourceMap": false,
  8. "moduleResolution": "node",
  9. "esModuleInterop": true,
  10. "allowSyntheticDefaultImports": true,
  11. "baseUrl": "./",
  12. "paths": {
  13. "@/*": ["src/*"]
  14. },
  15. "typeRoots": [
  16. "node_modules/@types",
  17. "typings"
  18. ]
  19. }
  20. }