19 lines
386 B
JSON
19 lines
386 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"pretty": true,
|
|
"target": "es2015",
|
|
"lib": [
|
|
"es2015"
|
|
],
|
|
"module": "commonjs",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noImplicitAny": false // Needed to compile tap and ansi-escapes
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
]
|
|
}
|