Files
colanode/server/tsconfig.json
2024-10-26 17:13:27 +02:00

16 lines
265 B
JSON

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