15 lines
359 B
JSON
15 lines
359 B
JSON
|
|
{
|
||
|
|
// This config is for emitting declarations (.d.ts) only
|
||
|
|
// Actual .ts source files are transpiled via babel
|
||
|
|
"extends": "./tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"composite": true,
|
||
|
|
"declaration": false,
|
||
|
|
"noEmit": false,
|
||
|
|
"emitDeclarationOnly": false,
|
||
|
|
"outDir": "build/esm",
|
||
|
|
"rootDir": "./lib"
|
||
|
|
},
|
||
|
|
"include": ["lib/**/*.*"]
|
||
|
|
}
|