2020-07-22 00:35:23 +08:00
|
|
|
{
|
2021-08-24 13:36:48 +08:00
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"removeComments": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"noLib": false,
|
|
|
|
"target": "es6",
|
|
|
|
"sourceMap": true,
|
|
|
|
"lib": ["ESNext", "DOM"],
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2021-09-12 19:38:48 +08:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"strict": true
|
2021-08-24 13:36:48 +08:00
|
|
|
},
|
2021-08-31 09:40:13 +08:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"**/__tests__",
|
|
|
|
"dist/**",
|
|
|
|
"packages/*/es",
|
|
|
|
"packages/*/lib"
|
|
|
|
]
|
2020-07-22 00:35:23 +08:00
|
|
|
}
|