| 1234567891011121314151617181920212223242526272829 |
- {
- "$schema": "http://json.schemastore.org/tsconfig",
- "extends": "../../tsconfig.base.json",
- "compilerOptions": {
- "module": "CommonJS",
- "jsx": "preserve",
- "resolveJsonModule": true,
- "baseUrl": ".",
- "paths": {
- "~/*": ["./src/*"],
- "^/*": ["./*"],
- "@growi/codemirror-textlint": ["../../packages/codemirror-textlint/src"],
- "debug": ["./src/server/utils/logger/alias-for-debug"]
- }
- },
- "include": [
- "next-env.d.ts",
- "config",
- "src"
- ],
- "ts-node": {
- "transpileOnly": true,
- "swc": true
- }
- }
|