-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.cli.json
More file actions
34 lines (34 loc) · 1.13 KB
/
Copy pathtsconfig.cli.json
File metadata and controls
34 lines (34 loc) · 1.13 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
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["node"],
"allowJs": true,
"checkJs": false,
"strict": true,
"skipLibCheck": true,
"noEmit": false,
"noEmitOnError": true,
"declaration": false,
"sourceMap": false,
"rootDir": ".",
"outDir": "dist/cli"
},
"files": [
"src/cli/cssgraphics.mjs",
"src/cli/executable.mjs",
"src/adapters/super-mario-64/audit/client.ts",
"src/adapters/super-mario-64/audit/scene.ts",
"src/adapters/super-mario-64/source-model/animator.ts",
"src/adapters/super-mario-64/source-model/appearanceFit.ts",
"src/adapters/super-mario-64/source-model/deformationRuntime.ts",
"src/adapters/super-mario-64/source-model/drawRuntime.ts",
"src/adapters/super-mario-64/source-model/eyeFollow.ts",
"src/adapters/super-mario-64/source-model/grabRuntime.ts",
"src/adapters/super-mario-64/source-model/math.ts",
"src/adapters/super-mario-64/source-model/picking.ts",
"src/adapters/super-mario-64/runtime/polycssRoot.ts"
]
}