streamdeck-typescript
Version:
This library will help you build elgato stream deck plugins in typescript
31 lines (30 loc) • 630 B
JSON
{
"compilerOptions": {
"module": "CommonJS",
"target": "ES6",
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"declaration": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"strictPropertyInitialization": false,
"skipLibCheck": true,
"outDir": "./dist",
"esModuleInterop": true,
"experimentalDecorators": true,
"lib": [
"dom",
"ESNext"
]
},
"include": [
"src/**/*",
"example/**/*"
],
"exclude": [
"node_modules",
"**/*.spec.ts"
],
"extends": "@tsconfig/recommended/tsconfig.json"
}