tsconfig.json 424 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "target": "es2016",
  4. "module": "commonjs",
  5. "esModuleInterop": true,
  6. "forceConsistentCasingInFileNames": true,
  7. "experimentalDecorators": true,
  8. "emitDecoratorMetadata": true,
  9. "strict": true,
  10. "strictPropertyInitialization": false,
  11. "sourceMap": true,
  12. "declaration": true,
  13. "skipLibCheck": true,
  14. "outDir": "./dist"
  15. },
  16. "include": [
  17. "./index.ts"
  18. ]
  19. }