tsconfig.json 361 B

12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "target": "ES2020",
  5. "lib": [
  6. "ES2020"
  7. ],
  8. "baseUrl": "src",
  9. "outDir": "dist",
  10. "paths": {
  11. "@/*": ["./*"]
  12. },
  13. "sourceMap": true,
  14. "newLine": "lf",
  15. "strict": true,
  16. "noImplicitReturns": true,
  17. "noUnusedLocals": true,
  18. "noImplicitOverride": true,
  19. "exactOptionalPropertyTypes": true,
  20. },
  21. }