Files
colanode/server/tsconfig.json

16 lines
260 B
JSON
Raw Normal View History

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