tsconfig.json 395 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "lib": ["ESNext", "DOM"],
  6. "outDir": "./dist",
  7. "rootDir": "./src",
  8. "strict": true,
  9. "esModuleInterop": true,
  10. "skipLibCheck": true,
  11. "forceConsistentCasingInFileNames": true,
  12. "moduleResolution": "bundler",
  13. "sourceMap": true,
  14. },
  15. "include": ["src/**/*"],
  16. "exclude": ["node_modules"],
  17. }