2
0

tsconfig.build.client.json 421 B

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