20 lines
517 B
JSON
20 lines
517 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"noEmit": false
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/node_modules/*",
|
|
"**/coverage/*",
|
|
"**/dist/**/*",
|
|
"packages/**/test-helpers",
|
|
// ignore test/demos for singleton manager until overlays are typed as it's used in there
|
|
"packages/singleton-manager/demo/",
|
|
"packages/singleton-manager/test/",
|
|
// specific for building types
|
|
"packages/core/index.js"
|
|
]
|
|
}
|