-
Notifications
You must be signed in to change notification settings - Fork 22
/
tsconfig.json
46 lines (46 loc) · 1.05 KB
/
tsconfig.json
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
{
"compilerOptions": {
"skipLibCheck": true,
"module": "es2022",
"target": "es2022",
"resolveJsonModule": true,
"allowJs": true,
"moduleResolution": "node",
"outDir": "dist",
"lib": ["ESNext", "dom"],
"sourceMap": true,
"rootDir": ".",
"forceConsistentCasingInFileNames": true,
"strictFunctionTypes": false, // This is required by Jantix
"strict": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"suppressImplicitAnyIndexErrors": false,
"noUnusedLocals": true,
"typeRoots": ["./node_modules/@types"],
"types": ["node"],
"jsx": "react-jsx",
"baseUrl": ".",
"verbatimModuleSyntax": true,
"paths": {
"*": ["./node_modules/@types/*", "*"]
}
},
"paths": {
"src/*": ["src/**/*"]
},
"include": ["./index.d.ts", "src/**/*", "svg.d.ts"],
"exclude": [
"node_modules",
"dist",
"scripts",
"acceptance-tests",
"webpack",
"jest",
"deprecated",
"backend",
"faust-compiler",
"engine",
"src/vocalSynthesis"
]
}