2019-01-28 20:25:26 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-09-11 18:47:53 +08:00
|
|
|
"outDir": "./dist/",
|
2021-01-05 18:40:11 +08:00
|
|
|
"sourceMap": true,
|
2019-01-28 20:25:26 +08:00
|
|
|
"allowJs":true,
|
2022-12-16 03:26:34 +08:00
|
|
|
"target": "es6",
|
2020-08-28 13:29:47 +08:00
|
|
|
"module": "commonjs",
|
2021-05-11 14:20:07 +08:00
|
|
|
"declaration": true,
|
2020-08-28 13:29:47 +08:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": false,
|
2021-01-05 18:40:11 +08:00
|
|
|
"skipLibCheck": true,
|
2020-08-28 13:29:47 +08:00
|
|
|
"typeRoots": [
|
|
|
|
"node",
|
|
|
|
"node_modules/@types",
|
|
|
|
"./src/typings"
|
|
|
|
]
|
|
|
|
|
2019-01-28 20:25:26 +08:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./src/**/*"
|
|
|
|
],
|
2019-05-14 16:57:09 +08:00
|
|
|
"typeAcquisition": {
|
|
|
|
"include": [
|
|
|
|
"jest"
|
|
|
|
]
|
|
|
|
}
|
2019-01-28 20:25:26 +08:00
|
|
|
}
|