mirror of
https://github.com/IT4Change/boilerplate-backend.git
synced 2025-12-12 18:05:49 +00:00
22 lines
493 B
JSON
22 lines
493 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"lib": ["ESNext"],
|
|
"paths": {
|
|
"#graphql/*": ["./src/graphql/*"],
|
|
"#src/*": ["./src/*"],
|
|
"#test/*": ["./test/*"],
|
|
"#types/*": ["./src/graphql/types/*"]
|
|
},
|
|
"outDir": "./build",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
}
|
|
}
|