iopa
Version:
API-first, Internet of Things (IoT) stack for Typescript, official implementation of the Internet Open Protocols Alliance (IOPA) reference pattern
31 lines (30 loc) • 807 B
JSON
{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"outDir": "dist",
"rootDir": "src",
"lib": ["ESNext", "WebWorker"],
"sourceMap": false,
"declaration": true,
"allowJs": false,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": false,
"strictNullChecks": false,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false,
"esModuleInterop": false,
"experimentalDecorators": true,
"isolatedModules": false,
"resolveJsonModule": true,
"downlevelIteration": true,
"stripInternal": true,
"removeComments": true
},
"include": ["src"],
"exclude": ["node_modules"]
}