mmy / tsconfig.worker.json
Mohammad Shahid
added self repair and removed player ai
d87d4e5
Invalid JSON:Unexpected token '/', "// tsconfi"... is not valid JSON
// tsconfig.worker.json (Updated)
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"outDir": "dist",
"noEmit": false
},
"include": [
"worker.ts", // Only the entry point is needed! TS will find the rest.,
"repair.worker.ts"
],
"exclude": ["node_modules", ".next", "components", "app/components"]
}