-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
34 lines (34 loc) · 827 Bytes
/
Copy pathtsconfig.node.json
File metadata and controls
34 lines (34 loc) · 827 Bytes
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
{
"compilerOptions": {
"composite": true,
"target": "ES2023",
"lib": ["ES2023", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "Bundler",
"verbatimModuleSyntax": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"strict": true,
"skipLibCheck": false,
"types": ["node"]
},
"include": [
"vite.config.ts",
"eslint.config.js",
"tools",
"src/core/basicStartup.ts",
"src/core/C64Machine.ts",
"src/core/PalFrameScheduler.ts",
"src/core/CpuBusArbitrationInvariantError.ts",
"src/core/cpu",
"src/core/memory",
"src/devices",
"src/media",
"src/peripherals",
"src/shared",
"src/video/PalFrameScheduler.ts",
"src/video/palVideoStandard.ts",
"src/video/PixelFrameBuffer.ts"
]
}