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.
48 lines
1.1 KiB
48 lines
1.1 KiB
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"target": "es2016",
|
|
"lib": [
|
|
"es2016"
|
|
],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"pretty": true,
|
|
"newLine": "lf",
|
|
"stripInternal": true,
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noEmitOnError": true,
|
|
"forceConsistentCasingInFileNames": 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"
|
|
}
|
|
}
|
|
|