2019-01-28 20:25:26 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-09-11 18:47:53 +08:00
|
|
|
"outDir": "./dist/",
|
2023-12-08 20:29:34 +08:00
|
|
|
"sourceMap": false,
|
2019-01-28 20:25:26 +08:00
|
|
|
"allowJs":true,
|
2022-12-16 03:26:34 +08:00
|
|
|
"target": "es6",
|
2023-05-04 10:13:05 +08:00
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "node",
|
2021-05-11 14:20:07 +08:00
|
|
|
"declaration": true,
|
2024-03-27 19:04:16 +08:00
|
|
|
"strictNullChecks": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"lib": [
|
|
|
|
"ESNext",
|
|
|
|
"DOM"
|
|
|
|
],
|
2021-01-05 18:40:11 +08:00
|
|
|
"skipLibCheck": true,
|
2023-05-04 10:13:05 +08:00
|
|
|
"types": [
|
|
|
|
"node",
|
2023-05-30 14:44:03 +08:00
|
|
|
"jest"
|
2023-05-04 10:13:05 +08:00
|
|
|
],
|
2020-08-28 13:29:47 +08:00
|
|
|
"typeRoots": [
|
|
|
|
"node",
|
|
|
|
"node_modules/@types",
|
|
|
|
]
|
2019-01-28 20:25:26 +08:00
|
|
|
},
|
2023-12-19 19:22:27 +08:00
|
|
|
"isolatedModules": true,
|
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
|
|
|
}
|