boilerplate-backend/tsconfig.json
2023-12-01 08:47:14 +01:00

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
}
}