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 387B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "target": "ES6",
  4. "allowJs": true,
  5. "module": "commonjs",
  6. "skipLibCheck": true,
  7. "esModuleInterop": true,
  8. "noImplicitAny": true,
  9. "sourceMap": true,
  10. "baseUrl": ".",
  11. "outDir": "dist",
  12. "moduleResolution": "node",
  13. "resolveJsonModule": true,
  14. "paths": {
  15. "*": ["node_modules/*"]
  16. }
  17. },
  18. "include": ["src/**/*"]
  19. }