-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
tsconfig.json
35 lines (35 loc) · 895 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
29
30
31
32
33
34
35
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"compilerOptions": {
"strict": true,
"alwaysStrict": true,
"moduleResolution": "node",
"declaration": true,
"declarationMap": true,
"pretty": true,
"module": "CommonJS",
"target": "ES6",
"lib": ["ESNext", "DOM"],
"typeRoots": ["node_modules/@types"],
"types": ["node"],
"sourceMap": true,
"jsx": "react-jsx",
"incremental": true,
"esModuleInterop": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true
},
"references": [
{
"path": "./packages/api"
},
{
"path": "./packages/guilded.js"
},
{
"path": "./packages/gil"
}
],
"exclude": ["dist/**"]
}