15 lines
325 B
JSON
15 lines
325 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": false,
|
|
"strict": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["tests/**/*", "lib", "node_modules"],
|
|
"files": ["src/index.ts"],
|
|
"typedocOptions": {
|
|
"entryPoints": ["src/index.ts"],
|
|
"out": "../../website/static/api/ts-lite"
|
|
}
|
|
}
|