15 lines
335 B
JSON
15 lines
335 B
JSON
|
|
{
|
||
|
|
"extends": "./tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"allowJs": false,
|
||
|
|
"declaration": true,
|
||
|
|
"declarationMap": false,
|
||
|
|
"emitDeclarationOnly": true,
|
||
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
||
|
|
"noEmit": false,
|
||
|
|
"outDir": "dist",
|
||
|
|
"rootDir": "src"
|
||
|
|
},
|
||
|
|
"include": ["src/index.ts", "src/client/**/*.ts"]
|
||
|
|
}
|