-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (34 loc) · 872 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
{
"include": ["src/**/*", "typings"],
"exclude": ["node_modules"],
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"sourceMap": true,
"downlevelIteration": true,
"resolveJsonModule": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"newLine": "lf",
"strict": false,
"moduleResolution": "node",
"jsx": "react",
"allowJs": true,
"esModuleInterop": true,
"lib": ["dom", "es2015", "es2016", "es2017"],
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"typings/*": ["typings/*"],
"@pan/utils": ["src/utils"],
"@pan/bridge": ["src/bridge"]
},
"typeRoots": [
"./node_modules/@types",
"./node_modules/sketch-typings",
"./node_modules/@figma"
]
}
}