kute.js/tsconfig.json
thednp e5456b86e9 Changes:
* added a more consistent Typescript generate tsconfig.json
* in regards to Typescript, all internals/externals well defined
2021-11-13 18:51:59 +02:00

16 lines
365 B
JSON

{
"compilerOptions": {
"declaration": true,
// "resolveJsonModule": true,
"emitDeclarationOnly": true,
"maxNodeModuleJsDepth": 2,
"strict": true,
"allowJs": true,
"rootDir": "src/",
"outDir": "types"
},
"include": ["src/**/*"],
// "exclude": ["node_modules", "dist", "types", "demo"]
"exclude": ["dist", "types", "demo"]
}