tsconfig.json 257 B

123456789101112
  1. {
  2. "compilerOptions": {
  3. "target": "ES6",
  4. "module": "CommonJS",
  5. "baseUrl": "./",
  6. "outDir": "./lib",
  7. "lib": ["ES2015"],
  8. "moduleResolution": "node",
  9. "skipLibCheck": true
  10. },
  11. "include": ["src"]
  12. }