tsconfig.json 608 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "lib": ["ESNext", "dom"],
  6. "moduleResolution": "Bundler",
  7. "outDir": "./dist",
  8. "rootDir": ".",
  9. "strict": false,
  10. "esModuleInterop": true,
  11. "skipLibCheck": true,
  12. "forceConsistentCasingInFileNames": false,
  13. "allowImportingTsExtensions": true,
  14. "declaration": true,
  15. "emitDeclarationOnly": true,
  16. "resolveJsonModule": true,
  17. "noImplicitAny": false,
  18. "allowJs": true,
  19. "checkJs": false,
  20. "noEmitOnError": false,
  21. "moduleDetection": "force",
  22. "allowArbitraryExtensions": true
  23. }
  24. }