| 12345678910111213141516171819202122232425262728 |
- {
- "extends": "./tsconfig.node.json",
- "compilerOptions": {
- "target": "ES2020",
- "module": "ES2020",
- "moduleResolution": "node",
- "esModuleInterop": true,
- "skipLibCheck": true,
- "strict": true,
- "outDir": "./dist",
- "lib": ["ES2022"],
- "baseUrl": ".",
- "paths": {
- "@/*": ["./*"]
- },
- "resolveJsonModule": true,
- "allowSyntheticDefaultImports": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true
- },
- "include": [
- "scripts/ExportToAi/**/*", "api/**/*"
- ],
- "exclude": [
- "node_modules"
- ]
- }
|