tsconfig.json 276 B

1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "strict": true,
  4. "target": "es6",
  5. "module": "es2020",
  6. "newLine": "lf",
  7. "declaration": true,
  8. "declarationDir": "./dist",
  9. "moduleResolution": "node",
  10. "skipLibCheck": true,
  11. "allowJs": true
  12. },
  13. "include": ["src/*"]
  14. }