tsconfig.json 313 B

12345678910111213
  1. {
  2. "compilerOptions": {
  3. "outDir": "target/src",
  4. "target": "es2016",
  5. "module": "commonjs",
  6. "esModuleInterop": true,
  7. "forceConsistentCasingInFileNames": true,
  8. "strict": true,
  9. "skipLibCheck": true,
  10. "strictPropertyInitialization": false
  11. },
  12. "exclude": ["node_modules", "target"]
  13. }