52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@styled/*": ["./styled-system/*"]
|
|
},
|
|
"module": "commonjs",
|
|
"target": "es2022",
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"noEmit": false,
|
|
"incremental": false,
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "node",
|
|
"types": ["node", "react"]
|
|
},
|
|
"include": [
|
|
"src/db/index.ts",
|
|
"src/db/schema/**/*.ts",
|
|
"src/db/migrate.ts",
|
|
"src/lib/arcade/**/*.ts",
|
|
"src/arcade-games/**/Validator.ts",
|
|
"src/arcade-games/**/types.ts",
|
|
"src/arcade-games/know-your-world/maps.ts",
|
|
"src/arcade-games/know-your-world/continents.ts",
|
|
"src/arcade-games/know-your-world/mapColors.ts",
|
|
"src/app/games/matching/context/types.ts",
|
|
"src/app/games/matching/utils/cardGeneration.ts",
|
|
"src/app/games/matching/utils/matchValidation.ts",
|
|
"src/app/arcade/memory-quiz/types.ts",
|
|
"src/socket-server.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"src/components/**/*",
|
|
"src/contexts/**/*",
|
|
"src/hooks/**/*",
|
|
"src/stories/**/*",
|
|
"src/utils/**/*",
|
|
"src/arcade-games/**/components/**/*",
|
|
"**/*.test.ts",
|
|
"**/*.test.tsx",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|