Files

28 lines
737 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ES2022"],
"types": ["node"],
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": false,
"noEmit": true,
"baseUrl": ".",
"paths": {
"@domain/*": ["src/domain/*"],
"@application/*": ["src/application/*"],
"@infrastructure/*": ["src/infrastructure/*"],
"@composition/*": ["src/composition/*"]
}
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "web", "data"]
}