-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
50 lines (50 loc) · 1.68 KB
/
tsconfig.base.json
File metadata and controls
50 lines (50 loc) · 1.68 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
46
47
48
49
50
{
"compilerOptions": {
"target": "ES2024",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": ["ES2024", "ESNext", "DOM"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"composite": true,
"paths": {
"@soundtouchjs/core": ["./packages/core/src/index.ts"],
"@soundtouchjs/audio-worklet": ["./packages/audio-worklet/src/index.ts"],
"@soundtouchjs/interpolation-strategy-blackman": [
"./packages/interpolation-strategy-blackman/src/index.ts"
],
"@soundtouchjs/interpolation-strategy-hann": [
"./packages/interpolation-strategy-hann/src/index.ts"
],
"@soundtouchjs/interpolation-strategy-kaiser": [
"./packages/interpolation-strategy-kaiser/src/index.ts"
],
"@soundtouchjs/interpolation-strategy-lanczos": [
"./packages/interpolation-strategy-lanczos/src/index.ts"
],
"@soundtouchjs/interpolation-strategy-linear": [
"./packages/interpolation-strategy-linear/src/index.ts"
],
"@soundtouchjs/stretch-phase-vocoder": [
"./packages/stretch-phase-vocoder/src/index.ts"
],
"@soundtouchjs/phase-vocoder-worklet": [
"./packages/phase-vocoder-worklet/src/index.ts"
],
"@soundtouchjs/formant-correction-worklet": [
"./packages/formant-correction-worklet/src/index.ts"
],
"@soundtouchjs/worklet-base": [
"./packages/worklet-base/src/index.ts"
]
}
},
"exclude": ["node_modules", "dist"]
}