You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 323B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "declaration": true,
  5. "esModuleInterop": true,
  6. "lib": [ "esnext" ],
  7. "module": "commonjs",
  8. "outDir": "build",
  9. "resolveJsonModule": true,
  10. "strict": true,
  11. "target": "es2019"
  12. },
  13. "include": [
  14. "./**/*.ts"
  15. ],
  16. "exclude": [
  17. "./build"
  18. ]
  19. }