mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-05-19 07:58:46 -05:00
20 lines
413 B
JSON
20 lines
413 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"paths": {
|
|
"@/*": ["./src/*"] // allows "@/db" -> "./src/db"
|
|
},
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"skipLibCheck": true,
|
|
"noUncheckedIndexedAccess": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["tests", "dist", "node_modules"]
|
|
}
|