tsconfig.json 605 B

12345678910111213141516171819202122
  1. {
  2. "compileOnSave": true,
  3. "compilerOptions": {
  4. "target": "es2018",
  5. "module": "commonjs",
  6. "moduleResolution": "node",
  7. "experimentalDecorators": true,
  8. "emitDecoratorMetadata": true,
  9. "inlineSourceMap": true,
  10. "noImplicitThis": true,
  11. "noUnusedLocals": true,
  12. "stripInternal": true,
  13. "skipLibCheck": true,
  14. "pretty": true,
  15. "declaration": true,
  16. "forceConsistentCasingInFileNames": true,
  17. "typeRoots": ["./typings", "./node_modules/@types"],
  18. "outDir": "dist",
  19. "allowSyntheticDefaultImports": true
  20. },
  21. "exclude": ["dist", "node_modules", "test"]
  22. }