mirror of https://github.com/lukechilds/ow.git
51 lines
1.1 KiB
51 lines
1.1 KiB
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"target": "es2016",
|
|
"lib": [
|
|
"es2015",
|
|
"es2016",
|
|
"es2017.sharedmemory"
|
|
],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"pretty": true,
|
|
"newLine": "lf",
|
|
"stripInternal": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictPropertyInitialization": true,
|
|
"alwaysStrict": true,
|
|
"esModuleInterop": 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": "ES6",
|
|
"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"
|
|
}
|
|
}
|
|
|