refactor api modules
This commit is contained in:
@@ -1,31 +1,54 @@
|
||||
{
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"target": "es2017",
|
||||
"module": "commonjs",
|
||||
"lib": ["es2022", "dom"],
|
||||
"moduleResolution": "node",
|
||||
"baseUrl": ".",
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"incremental": true,
|
||||
"lib": [
|
||||
"es2022",
|
||||
"dom"
|
||||
],
|
||||
"module": "commonjs",
|
||||
"moduleResolution": "node",
|
||||
"noEmit": false,
|
||||
"noEmitOnError": true,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"outDir": "./dist",
|
||||
"paths": {
|
||||
"@/*": [
|
||||
"./*"
|
||||
],
|
||||
"@adapters/*": [
|
||||
"../../adapters/*"
|
||||
],
|
||||
"@core/*": [
|
||||
"../../core/*"
|
||||
],
|
||||
"@testing/*": [
|
||||
"../../testing/*"
|
||||
]
|
||||
},
|
||||
"removeComments": true,
|
||||
"sourceMap": true,
|
||||
"outDir": "./dist",
|
||||
"incremental": true,
|
||||
"baseUrl": ".",
|
||||
"types": ["node", "express", "vitest/globals"],
|
||||
"paths": {
|
||||
"@/*": ["./*"],
|
||||
"@core/*": ["../../core/*"],
|
||||
"@adapters/*": ["../../adapters/*"],
|
||||
"@testing/*": ["../../testing/*"]
|
||||
}
|
||||
"strict": true,
|
||||
"strictNullChecks": true,
|
||||
"target": "es2017",
|
||||
"types": [
|
||||
"node",
|
||||
"express",
|
||||
"vitest/globals"
|
||||
]
|
||||
},
|
||||
"include": ["src/**/*", "../../adapters/bootstrap/EnsureInitialData.ts"],
|
||||
"exclude": ["node_modules", "dist", "**/*.mock.ts"]
|
||||
}
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"dist",
|
||||
"**/*.mock.ts"
|
||||
],
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"include": [
|
||||
"src/**/*"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user