emotiv-ts
Version:
A Typescript library that wraps the Cortex API functionalities to communicate with Emotiv headsets
17 lines (16 loc) • 482 B
JSON
{
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"declaration": true,
"outDir": "./dist", // Changes the outDir to "./dist"
"rootDir": "./src", // Changes the rootDir to "./src"
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}