-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (41 loc) · 1.64 KB
/
tsconfig.json
File metadata and controls
41 lines (41 loc) · 1.64 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
{
"compilerOptions": {
"target": "es2022",
"lib": ["es2023", "dom", "dom.iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"strict": true,
"downlevelIteration": true,
"allowImportingTsExtensions": false,
"noEmit": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"types": ["vite/client", "vite-plugin-glsl/ext"],
"baseUrl": ".",
"paths": {
"@8f4e/editor": ["packages/editor/src/index.ts"],
"@8f4e/editor-state": ["packages/editor/packages/editor-state/src/index.ts"],
"@8f4e/web-ui": ["packages/editor/packages/web-ui/src/index.ts"],
"glugglug": ["packages/editor/packages/glugglug/src/index.ts"],
"@8f4e/compiler": ["packages/compiler/src/index.ts"],
"@8f4e/compiler/syntax": ["packages/compiler/src/syntax/index.ts"],
"@8f4e/sprite-generator": ["packages/editor/packages/sprite-generator/src/index.ts"],
"@8f4e/state-manager": ["packages/editor/packages/state-manager/src/index.ts"],
"@8f4e/runtime-audio-worklet": ["packages/runtime-audio-worklet/src/index.ts"],
"@8f4e/runtime-web-worker-logic": ["packages/runtime-web-worker-logic/src/index.ts"],
"@8f4e/runtime-main-thread-logic": ["packages/runtime-main-thread-logic/src/index.ts"],
"@8f4e/runtime-web-worker-midi": ["packages/runtime-web-worker-midi/src/index.ts"],
"@8f4e/examples": ["packages/examples/src/index.ts"],
"@8f4e/examples/*": ["packages/examples/src/*"]
}
},
"exclude": ["node_modules", "packages/**/*", "src/**/*.test.ts", "dist"],
"include": [
"src/editor.ts",
"src/examples/**/*.ts"
]
}