mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-05-14 13:38:39 -05:00
22 lines
434 B
JSON
22 lines
434 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "./src",
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"module": "nodenext",
|
|
"moduleResolution": "nodenext",
|
|
"skipLibCheck": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"isolatedModules": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["tests", "dist", "node_modules"]
|
|
}
|