2019-01-28 20:25:26 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./lib/",
|
|
|
|
"sourceMap": false,
|
|
|
|
"allowJs":true,
|
|
|
|
"target": "es6",
|
2020-08-28 13:29:47 +08:00
|
|
|
"module": "commonjs",
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
"typeRoots": [
|
|
|
|
"node",
|
|
|
|
"node_modules/@types",
|
|
|
|
"./src/typings"
|
|
|
|
]
|
|
|
|
|
2019-01-28 20:25:26 +08:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./src/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"./src/peg/*",
|
|
|
|
"./src/jison/*"
|
2019-05-14 16:57:09 +08:00
|
|
|
],
|
|
|
|
"typeAcquisition": {
|
|
|
|
"include": [
|
|
|
|
"jest"
|
|
|
|
]
|
|
|
|
}
|
2019-01-28 20:25:26 +08:00
|
|
|
}
|