2020-07-22 00:35:23 +08:00
|
|
|
{
|
2021-08-24 13:36:48 +08:00
|
|
|
"compilerOptions": {
|
2021-11-24 13:49:49 +08:00
|
|
|
"strict": true,
|
|
|
|
"module": "ES6",
|
|
|
|
"target": "ES6",
|
2021-08-24 13:36:48 +08:00
|
|
|
"noImplicitAny": false,
|
2021-11-24 13:49:49 +08:00
|
|
|
"declaration": true,
|
|
|
|
"moduleResolution": "Node",
|
2021-08-24 13:36:48 +08:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"sourceMap": true,
|
2021-11-24 13:49:49 +08:00
|
|
|
"lib": ["ES2018", "DOM"],
|
2021-08-24 13:36:48 +08:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2021-09-12 19:38:48 +08:00
|
|
|
"resolveJsonModule": true,
|
2021-09-28 15:40:08 +08:00
|
|
|
"skipLibCheck": true
|
2021-08-24 13:36:48 +08:00
|
|
|
},
|
2021-11-24 13:49:49 +08:00
|
|
|
"include": ["packages"],
|
|
|
|
"exclude": ["node_modules", "**/__test?__", "**/dist"]
|
2020-07-22 00:35:23 +08:00
|
|
|
}
|