Files
Kyoo/api/tsconfig.json

19 lines
368 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"noErrorTruncation": true,
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"],
"package.json": ["package.json"]
}
}
}