-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.typecheck.json
More file actions
45 lines (45 loc) · 1.29 KB
/
Copy pathtsconfig.typecheck.json
File metadata and controls
45 lines (45 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"extends": "./jsconfig.json",
"compilerOptions": {
"noEmit": true,
"checkJs": true,
"allowJs": true,
"strict": false,
"noImplicitAny": false,
"maxNodeModuleJsDepth": 0,
"lib": [
"ES2021",
"DOM"
]
},
"include": [
"service-worker.js",
"src/scripts/game.js",
"src/scripts/utils-core.js",
"src/scripts/game-init.js",
"src/scripts/game-onboarding.bootstrap.js",
"src/scripts/console-manager.core.js",
"src/scripts/worm.js",
"src/scripts/worm-factory.js",
"src/scripts/worm-movement.js",
"src/scripts/worm-spawn-manager.js",
"src/scripts/worm-aggression.js",
"src/scripts/worm-cursor-tracker.js",
"src/scripts/worm-pathfinding.js",
"src/scripts/worm-obstacle-map.js",
"src/scripts/worm-evasion.js",
"src/scripts/life-stats/**/*.js",
"src/types/types/global.d.ts"
],
"exclude": [
"node_modules",
"tests/**",
"scripts/**",
"playwright.config.js",
"playwright.competition.config.js",
"eslint.config.js",
"src/scripts/worm-behavior.js",
"src/scripts/worm-constants.js",
"src/scripts/worm-renderer.js"
]
}