| 12345678910111213141516171819202122232425262728293031323334 |
- {
- "extends": "@flowgram.ai/ts-config/tsconfig.flow.path.json",
- "compilerOptions": {
- "target": "ES2017",
- "lib": ["dom", "dom.iterable", "esnext"],
- "allowJs": true,
- "skipLibCheck": true,
- "noUnusedLocals": true,
- "noImplicitAny": true,
- "experimentalDecorators": true,
- "strictPropertyInitialization": false,
- "strict": true,
- "noEmit": true,
- "esModuleInterop": true,
- "module": "esnext",
- "moduleResolution": "bundler",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "jsx": "preserve",
- "incremental": true,
- "plugins": [
- {
- "name": "next"
- }
- ],
- "baseUrl": "src",
- "paths": {
- "@app/*": ["app/*"],
- "@editor/*": ["editor/*"],
- }
- },
- "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
- "exclude": ["node_modules"]
- }
|