Files
colanode/server/tsconfig.json

15 lines
238 B
JSON
Raw Normal View History

2024-07-29 09:13:36 +02:00
{
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"outDir": "./dist",
"rootDir": ".",
2024-07-29 09:13:36 +02:00
"strict": true,
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
2024-07-29 09:13:36 +02:00
}
}