2020-07-22 00:35:23 +08:00
|
|
|
{
|
2021-08-24 13:36:48 +08:00
|
|
|
"compilerOptions": {
|
2021-12-10 18:18:16 +08:00
|
|
|
"allowJs": true,
|
2021-11-24 13:49:49 +08:00
|
|
|
"strict": true,
|
|
|
|
"module": "ES6",
|
2021-12-10 18:18:16 +08:00
|
|
|
"target": "ES2018",
|
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,
|
2022-01-12 10:48:51 +08:00
|
|
|
"resolveJsonModule": 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
|
|
|
}
|