neko/types-tsconfig.json
Miroslav Šedivý 1d076cc20c
Add TS types support for build (#28)
* build ts types.

* fix default export for lib.
2023-04-22 14:23:17 +02:00

26 lines
467 B
JSON

{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"rootDir": "src/component",
"outDir": "dist/types",
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/component/**/*.ts"
],
"exclude": [
"node_modules"
]
}