forked from sightread/sightread
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (30 loc) 路 754 Bytes
/
Copy pathtsconfig.json
File metadata and controls
30 lines (30 loc) 路 754 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
{
"compilerOptions": {
"types": ["bun-types", "jest", "webmidi"],
// Enable latest features
"lib": ["esnext", "dom", "dom.iterable"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "node",
"noEmit": true,
"allowImportingTsExtensions": true,
"moduleDetection": "force",
"jsx": "preserve",
"allowJs": true,
"esModuleInterop": true,
"strict": true,
"noImplicitAny": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"downlevelIteration": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"incremental": true
},
"include": ["src"],
"exclude": ["node_modules"]
}