25 lines
365 B
JSON
25 lines
365 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "commonjs",
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"skipLibCheck": true
|
|
},
|
|
"typedocOptions": {
|
|
"entryPoints": [
|
|
"src/**/*.ts"
|
|
],
|
|
"out": "typedoc"
|
|
}
|
|
|
|
}
|