brackt/tsconfig.json

22 lines
437 B
JSON
Raw Normal View History

{
"files": [],
"references": [
{ "path": "./tsconfig.node.json" },
{ "path": "./tsconfig.vite.json" }
],
"compilerOptions": {
"checkJs": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"],
"@/*": ["./app/*"],
"~/database/*": ["./database/*"],
"~/server/*": ["./server/*"]
}
}
}