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,
|
2021-09-28 15:40:08 +08:00
|
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true
|
2021-08-24 13:36:48 +08:00
|
|
|
},
|
2021-09-28 20:28:47 +08:00
|
|
|
"exclude": ["node_modules", "**/__tests__", "dist/**"]
|
2020-07-22 00:35:23 +08:00
|
|
|
}
|