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,
|
2023-05-12 11:42:39 +08:00
|
|
|
"noUnusedLocals": false,
|
2020-08-28 13:29:47 +08:00
|
|
|
"noUnusedParameters": false,
|
2023-05-04 10:13:05 +08:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
2021-01-05 18:40:11 +08:00
|
|
|
"skipLibCheck": true,
|
2023-05-04 10:13:05 +08:00
|
|
|
"paths": {
|
|
|
|
"antlr4": [
|
2023-12-13 11:37:14 +08:00
|
|
|
"./node_modules/antlr4/src/antlr4/index"
|
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",
|
2023-05-30 14:44:03 +08:00
|
|
|
"./src/typings"
|
2020-08-28 13:29:47 +08:00
|
|
|
]
|
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
|
|
|
}
|