14 lines
305 B
JSON
14 lines
305 B
JSON
|
|
{
|
||
|
|
"extends": "./tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"composite": true,
|
||
|
|
"declaration": true,
|
||
|
|
"noEmit": false,
|
||
|
|
"emitDeclarationOnly": true,
|
||
|
|
"outDir": "build/esm",
|
||
|
|
"rootDir": "./src"
|
||
|
|
},
|
||
|
|
"include": ["./src/**/*.ts*"],
|
||
|
|
"exclude": ["src/**/*.spec.ts*", "src/**/*.test.ts*"]
|
||
|
|
}
|