tsconfig.json 340 B

1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "target": "es2020",
  4. "module": "commonjs",
  5. "outDir": "./dist",
  6. "strict": false,
  7. "strictPropertyInitialization": false,
  8. "esModuleInterop": true,
  9. "experimentalDecorators": true,
  10. "emitDecoratorMetadata": true,
  11. "skipLibCheck": true,
  12. "forceConsistentCasingInFileNames": true
  13. }
  14. }