2019-10-11 07:41:16 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-09-10 02:24:16 +08:00
|
|
|
"esModuleInterop": true,
|
2019-10-11 07:41:16 +08:00
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
2023-09-10 02:24:16 +08:00
|
|
|
"strict": true,
|
|
|
|
"sourceMap": true,
|
2019-10-11 07:41:16 +08:00
|
|
|
"newLine": "lf",
|
|
|
|
"outDir": "./lib",
|
|
|
|
"rootDir": "./src",
|
2022-04-24 09:14:32 +08:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2019-10-11 07:41:16 +08:00
|
|
|
"noImplicitAny": false,
|
2023-09-10 02:24:16 +08:00
|
|
|
"resolveJsonModule": true,
|
2022-04-24 09:14:32 +08:00
|
|
|
"useUnknownInCatchVariables": false,
|
2019-10-11 07:41:16 +08:00
|
|
|
},
|
2023-09-10 02:24:16 +08:00
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
2019-10-11 07:41:16 +08:00
|
|
|
}
|