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

hace 3 días
1234567891011121314
  1. {
  2. "compilerOptions": {
  3. "target": "es2016",
  4. "module": "commonjs",
  5. "outDir": "./dist",
  6. "rootDir": "./src",
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "skipLibCheck": true,
  10. "forceConsistentCasingInFileNames": true
  11. },
  12. "include": ["src/**/*"],
  13. "exclude": ["node_modules"]
  14. }