16 lines
284 B
JSON
16 lines
284 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"outDir": "./lib/",
|
||
|
"sourceMap": false,
|
||
|
"allowJs":true,
|
||
|
"target": "es6",
|
||
|
"module": "commonjs"
|
||
|
},
|
||
|
"include": [
|
||
|
"./src/**/*"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"./src/peg/*",
|
||
|
"./src/jison/*"
|
||
|
]
|
||
|
}
|