Files
colanode/server/tsconfig.json
2024-07-29 15:15:32 +02:00

15 lines
238 B
JSON

{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"outDir": "./dist",
"rootDir": ".",
"strict": true,
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
}
}