tsconfig.json 163 B

123456789101112
  1. {
  2. "extends": "./tsconfig-base.json",
  3. "compilerOptions": {
  4. "outDir": "./"
  5. },
  6. "include": [
  7. "src/**/*.ts"
  8. ],
  9. "exclude": [
  10. "src/scripts"
  11. ]
  12. }