Assist_Design/packages/domain/tsconfig.json

27 lines
719 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "CommonJS",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"rootDir": "./src",
"downlevelIteration": true,
"composite": true,
"baseUrl": ".",
"paths": {
"@customer-portal/api-client": ["../api-client/dist"],
"@customer-portal/api-client/*": ["../api-client/dist/*"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
}