-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.lib.json
38 lines (38 loc) · 1.03 KB
/
tsconfig.lib.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
{
"compilerOptions": {
"esModuleInterop": true,
"declaration": true,
"stripInternal": true,
"outDir": "dist",
"target": "es2020",
"module": "esnext",
"moduleResolution": "node",
"pretty": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"downlevelIteration": true,
"suppressExcessPropertyErrors": false,
"exactOptionalPropertyTypes": false,
"inlineSourceMap": true,
"sourceMap": false,
"removeComments": true,
"inlineSources": true,
"useDefineForClassFields": false,
"preserveConstEnums": true,
"allowJs": true,
"jsx": "react",
"jsxFactory": "ReactEcs.createElement",
"alwaysStrict": true,
"strict": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"resolveJsonModule": true,
"lib": ["ES2020"],
"types": ["@dcl/js-runtime"]
},
"include": ["src"],
"exclude": ["dist"]
}