tsconfig.app.json 431 B

123456789101112131415
  1. {
  2. "extends": "./tsconfig.json",
  3. "compilerOptions": {
  4. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
  5. "outDir": "./dist",
  6. /* Linting */
  7. "strict": true,
  8. "noUnusedLocals": true,
  9. "noUnusedParameters": true,
  10. "erasableSyntaxOnly": true,
  11. "noFallthroughCasesInSwitch": true,
  12. "noUncheckedSideEffectImports": true
  13. },
  14. "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
  15. }