tsconfig.json 253 B

12345678910111213
  1. {
  2. "compilerOptions": {
  3. "strict": true,
  4. "target": "ES6",
  5. "module": "commonjs",
  6. "declaration": true,
  7. "rootDir":"./src",
  8. "outDir": "./dist",
  9. "esModuleInterop": true,
  10. },
  11. "include": ["src/**/*.ts"]
  12. }