tsconfig.json 437 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "./",
  4. "outDir": "./dist/",
  5. "noImplicitAny": true,
  6. "target": "es6",
  7. "module": "CommonJS",
  8. "composite": true,
  9. // "jsx": "react",
  10. "allowJs": true,
  11. // "checkJs": true,
  12. "allowSyntheticDefaultImports" : true,
  13. "esModuleInterop" : true
  14. },
  15. "include": [
  16. "src/**/*" // Adjust the path to include your source files
  17. ],
  18. "exclude": [
  19. "node_modules"
  20. ]
  21. }