tsconfig.json 298 B

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