19 lines
466 B
JSON
19 lines
466 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"rootDir": "./src",
|
|
"baseUrl": ".",
|
|
"declarationDir": "./dist",
|
|
"outDir": "./dist",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"emitDeclarationOnly": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"lib": ["ES2021", "DOM", "DOM.Iterable"]
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["src/testing/**/*", "**/*.spec.ts"]
|
|
}
|