mirror of
https://github.com/IT4Change/boilerplate-backend.git
synced 2025-12-13 10:25:49 +00:00
17 lines
347 B
JSON
17 lines
347 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2021",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"module": "ES2020",
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"#types/*": ["./src/graphql/types/*"]
|
|
},
|
|
"outDir": "./build",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"skipLibCheck": true
|
|
}
|
|
}
|