tsconfig.build.next.config.json 412 B

12345678910111213141516171819
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "extends": "../../tsconfig.base.json",
  4. "compilerOptions": {
  5. "module": "CommonJS",
  6. "noResolve": false,
  7. "preserveConstEnums": true,
  8. "sourceMap": false,
  9. "noEmit": false,
  10. "paths": {
  11. "~/*": ["./src/*"],
  12. "^/*": ["./*"]
  13. }
  14. },
  15. "files": [
  16. "config/next-i18next.config.ts",
  17. "src/utils/next.config.utils.ts"
  18. ]
  19. }