2023-01-17 18:53:57 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-01-23 05:50:08 +08:00
|
|
|
"esModuleInterop": true,
|
2023-01-17 18:53:57 +08:00
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
2023-01-23 05:50:08 +08:00
|
|
|
"strict": true,
|
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": true,
|
2023-01-17 18:53:57 +08:00
|
|
|
"newLine": "lf",
|
|
|
|
"outDir": "./lib",
|
|
|
|
"rootDir": "./src",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"useUnknownInCatchVariables": false,
|
|
|
|
},
|
|
|
|
"exclude": [
|
2023-01-30 07:08:45 +08:00
|
|
|
"./__mocks__/**/*",
|
|
|
|
"./__tests__/**/*",
|
2023-01-23 05:50:08 +08:00
|
|
|
"./lib/**/*",
|
2023-01-17 18:53:57 +08:00
|
|
|
"node_modules",
|
2023-02-27 16:10:57 +08:00
|
|
|
"jest.config*.ts"
|
2023-01-17 18:53:57 +08:00
|
|
|
]
|
|
|
|
}
|