Assist_Design/packages/domain/tsconfig.json

36 lines
756 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"lib": ["ES2022"],
"declaration": true,
"declarationMap": true,
"composite": true,
"outDir": "./dist",
"rootDir": ".",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"verbatimModuleSyntax": false
},
"include": [
"billing/**/*",
"subscriptions/**/*",
"payments/**/*",
"sim/**/*",
"orders/**/*",
"catalog/**/*",
"mappings/**/*",
"customer/**/*",
"common/**/*",
"auth/**/*",
"dashboard/**/*",
"toolkit/**/*",
"index.ts"
],
"exclude": ["node_modules", "dist"]
}