37 lines
700 B
JSON
37 lines
700 B
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"target": "es2020",
|
|
"lib": ["es2015", "dom"],
|
|
"module": "commonjs",
|
|
"allowJs": false,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"outDir": "./dist/",
|
|
"rootDir": "./src/",
|
|
"removeComments": true,
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"static",
|
|
"docs",
|
|
"jest.config.ts",
|
|
"**/*.test.ts",
|
|
"tmp",
|
|
"dist",
|
|
"**/*setupTests"
|
|
],
|
|
|
|
"typedocOptions": {
|
|
"entryPoints": ["src/index.ts"],
|
|
"out": "docs"
|
|
}
|
|
}
|