Creating first version of MCP server.
Some checks failed
CI Pipeline / Test and Build (20.x) (push) Failing after 3m22s
CI Pipeline / Code Quality Check (push) Failing after 11m52s
CI Pipeline / Security Audit (push) Failing after 11m53s
CI Pipeline / Test and Build (18.x) (push) Failing after 12m31s
CI Pipeline / Build Release Artifacts (push) Has been cancelled
CI Pipeline / Notification (push) Has been cancelled
Some checks failed
CI Pipeline / Test and Build (20.x) (push) Failing after 3m22s
CI Pipeline / Code Quality Check (push) Failing after 11m52s
CI Pipeline / Security Audit (push) Failing after 11m53s
CI Pipeline / Test and Build (18.x) (push) Failing after 12m31s
CI Pipeline / Build Release Artifacts (push) Has been cancelled
CI Pipeline / Notification (push) Has been cancelled
This commit is contained in:
@ -1,32 +1,37 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"esModuleInterop": true,
|
||||
"target": "es2021",
|
||||
"moduleResolution": "node",
|
||||
"sourceMap": true,
|
||||
"typeRoots" : ["./src/@types", "./node_modules/@types"],
|
||||
"strict": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@src/*": ["src/*"],
|
||||
"@src": ["src"],
|
||||
"@routes*": ["src/routes/*"],
|
||||
"@routes": ["src/routes"],
|
||||
"@controllers/*": ["src/controllers/*"],
|
||||
"@controllers": ["src/controllers"],
|
||||
"@models/*": ["src/models/*"],
|
||||
"@models": ["src/models"],
|
||||
"@controllerGraphQL/*": ["src/controllers/controllerGraphQL/*"],
|
||||
"@controllerGraphQL": ["src/controllers/controllerGraphQL"],
|
||||
"@GraphQL/*": ["src/GraphQL/*"],
|
||||
"@GraphQL": ["src/GraphQL"],
|
||||
"@config/*": ["config/*"],
|
||||
"@config": ["config"]
|
||||
}
|
||||
},
|
||||
"lib": ["es2018", "esnext.asynciterable"]
|
||||
}
|
||||
"compilerOptions": {
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "node",
|
||||
"target": "ES2022",
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"sourceMap": true,
|
||||
"outDir": "./build",
|
||||
"rootDir": "./src",
|
||||
"strict": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"skipLibCheck": true,
|
||||
"declaration": true,
|
||||
"declarationMap": true,
|
||||
"typeRoots": ["./src/@types", "./node_modules/@types"],
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@src/*": ["src/*"],
|
||||
"@src": ["src"],
|
||||
"@tools/*": ["src/tools/*"],
|
||||
"@tools": ["src/tools"],
|
||||
"@resources/*": ["src/resources/*"],
|
||||
"@resources": ["src/resources"],
|
||||
"@types/*": ["src/types/*"],
|
||||
"@types": ["src/types"],
|
||||
"@generators/*": ["src/generators/*"],
|
||||
"@generators": ["src/generators"],
|
||||
"@utils/*": ["src/utils/*"],
|
||||
"@utils": ["src/utils"],
|
||||
"@templates/*": ["templates/*"],
|
||||
"@templates": ["templates"]
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*"],
|
||||
"exclude": ["node_modules", "build", "**/*.test.ts"]
|
||||
}
|
||||
|
Reference in New Issue
Block a user