tsconfig.json 334 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  4. "module": "commonjs",
  5. "lib": [
  6. "es6"
  7. ],
  8. "outDir": "./lib",
  9. "rootDir": "./src",
  10. "declaration": true,
  11. "strict": true,
  12. "noImplicitAny": false,
  13. "esModuleInterop": true,
  14. "skipLibCheck": true
  15. },
  16. "exclude": ["__test__", "lib", "node_modules"]
  17. }