tsconfig.json 574 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "NodeNext",
  5. "lib": ["ES2022", "DOM"],
  6. "outDir": "./dist",
  7. "rootDir": "./src",
  8. "strict": true,
  9. "moduleResolution": "NodeNext",
  10. "baseUrl": "./src",
  11. "esModuleInterop": true,
  12. "experimentalDecorators": true,
  13. "emitDecoratorMetadata": true,
  14. "skipLibCheck": true,
  15. "allowSyntheticDefaultImports": true,
  16. "forceConsistentCasingInFileNames": true,
  17. "paths": {
  18. "@/*": ["./*"]
  19. }
  20. },
  21. "include": ["src/**/*"],
  22. "exclude": ["node_modules"]
  23. }