tsconfig.json 567 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "$schema": "http://json.schemastore.org/tsconfig",
  3. "extends": "../../tsconfig.base.json",
  4. "compilerOptions": {
  5. "module": "CommonJS",
  6. "jsx": "preserve",
  7. "resolveJsonModule": true,
  8. "baseUrl": ".",
  9. "paths": {
  10. "~/*": ["./src/*"],
  11. "^/*": ["./*"],
  12. "@growi/codemirror-textlint": ["../../packages/codemirror-textlint/src"],
  13. "debug": ["./src/server/utils/logger/alias-for-debug"]
  14. }
  15. },
  16. "include": [
  17. "next-env.d.ts",
  18. "config",
  19. "src"
  20. ],
  21. "ts-node": {
  22. "transpileOnly": true,
  23. "swc": true
  24. }
  25. }