-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 831 Bytes
/
Copy pathtsconfig.json
File metadata and controls
25 lines (25 loc) · 831 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
{
"compilerOptions": {
"baseUrl": ".",
"module": "es6",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"target": "es2017",
"experimentalDecorators": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"paths": {
"util/*": ["./src/util/*"],
"lwc": ["./node_modules/@lwc/engine"],
"wire-service": ["./node_modules/@lwc/wire-service"],
"store/*": ["./src/store/*"],
"cmp/*": ["./src/ffmpeg/*"],
"event/*": ["./src/event/*"],
"notes/*": ["./src/notes/*"],
"keyboard/*": ["./src/keyboard/*"],
"markers/*": ["./src/markers/*"],
"units/*": ["./src/units/*"],
"audio/*": ["./src/audio/*"]
}
},
}