forked from decaporg/decap-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
28 lines (28 loc) · 893 Bytes
/
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
{
"compilerOptions": {
"declaration": true,
"jsx": "react",
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"esModuleInterop": true,
"noEmit": true,
"strict": true,
"isolatedModules": true,
"skipLibCheck": true,
"allowJs": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"useUnknownInCatchVariables": false,
"baseUrl": "./",
"paths": {
"decap-cms-backend-bitbucket": ["packages/decap-cms-backend-bitbucket/src"],
"decap-cms-backend-github": ["packages/decap-cms-backend-github/src"],
"decap-cms-backend-gitlab": ["packages/decap-cms-backend-gitlab/src"],
"decap-cms-lib-util": ["packages/decap-cms-lib-util/src"],
"decap-cms-lib-widgets": ["packages/decap-cms-lib-widgets/src"]
}
},
"include": ["**/src/**/*"],
"exclude": ["node_modules", "**/*.spec.ts"]
}