26 lines
572 B
JSON
26 lines
572 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"alwaysStrict": false,
|
||
|
"declaration": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"newLine": "lf",
|
||
|
"skipLibCheck": true,
|
||
|
"sourceMap": true,
|
||
|
"outDir": "lib",
|
||
|
"strict": true,
|
||
|
"target": "es6",
|
||
|
"types": [
|
||
|
"node"
|
||
|
]
|
||
|
},
|
||
|
"include": [
|
||
|
"src/**/*",
|
||
|
],
|
||
|
"exclude": [
|
||
|
"node_modules",
|
||
|
"lib",
|
||
|
"test/cases/**/*"
|
||
|
]
|
||
|
}
|