17 lines
400 B
JSON
17 lines
400 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "commonjs",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "./dist"
|
|
},
|
|
"include": ["src/**/*", "./src/types/*.d.ts"],
|
|
"exclude": ["node_modules", "**/*.spec.ts"],
|
|
"typedocOptions": {
|
|
"out": "./docs",
|
|
"entryPoints": ["./src/**/*.ts"],
|
|
}
|
|
} |