mirror of
https://github.com/aleleba/create-node-ts-graphql-server.git
synced 2025-01-08 04:56:46 -06:00
32 lines
1.0 KiB
JSON
32 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"target": "es2018",
|
|
"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"]
|
|
} |