tsconfig.build.client.json 404 B

123456789101112131415161718192021
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "extends": "./tsconfig.json",
  4. "include": [
  5. ".next/types/**/*.ts"
  6. ],
  7. "compilerOptions": {
  8. "strict": false,
  9. "strictNullChecks": true,
  10. "noFallthroughCasesInSwitch": true,
  11. "incremental": true,
  12. "baseUrl": ".",
  13. "paths": {
  14. "~/*": ["./src/*"],
  15. "^/*": ["./*"],
  16. },
  17. "plugins": [{"name": "next"}]
  18. }
  19. }