-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
44 lines (44 loc) · 1.1 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
{
// Change this to match your project
"include": [
"./src/**/*",
"./test/*.cjs",
"./test/*.js",
"./test/*.ts"
],
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
// Tells TypeScript to read JS files, as
// normally they are ignored as source files
"allowJs": true,
"checkJs": false,
// Generate d.ts files
"declaration": true,
// This compiler run should
// only output d.ts files
// "emitDeclarationOnly": false,
// Types should go into this directory.
// Removing this would place the .d.ts files
// next to the .js files
"outDir": "tmp/dist",
"esModuleInterop": true,
"resolveJsonModule": true,
"moduleResolution": "Bundler",
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"noImplicitAny": false,
"noUnusedLocals": false,
"allowUmdGlobalAccess": true,
"allowUnreachableCode": true,
"allowUnusedLabels": true,
"noImplicitThis": false
},
"exclude": [
"**/node_modules/**",
"**/tmp/**",
"**/dist/**",
"**/demo/**"
]
}