mirror of https://github.com/lukechilds/ow.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.0 KiB
47 lines
1.0 KiB
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"target": "es2015",
|
|
"lib": [
|
|
"es2015"
|
|
],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"pretty": true,
|
|
"newLine": "lf",
|
|
"stripInternal": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"alwaysStrict": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
],
|
|
"typedocOptions": {
|
|
"out": "docs",
|
|
// Links to `ArrayPredicate` and others doesn't work when this is specified...
|
|
// "entryPoint": "Ow",
|
|
"mode": "file",
|
|
"target": "ES5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"exclude": "source/test",
|
|
"ignoreCompilerErrors": true,
|
|
"excludePrivate": true,
|
|
"excludeNotExported": true,
|
|
"stripInternal": true,
|
|
"suppressExcessPropertyErrors": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"theme": "minimal",
|
|
"hideGenerator": true,
|
|
"readme": "none"
|
|
}
|
|
}
|
|
|