An easy-to-use platform for EEG experimentation in the classroom
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

tsconfig

+39
+39
tsconfig.json
··· 1 + { 2 + "compilerOptions": { 3 + "target": "ES2018", 4 + "module": "CommonJS", 5 + "lib": ["dom", "esnext"], 6 + "declaration": true, 7 + "declarationMap": true, 8 + "noEmit": true, 9 + "jsx": "react", 10 + "strict": true, 11 + "pretty": true, 12 + "sourceMap": true, 13 + /* Additional Checks */ 14 + "noUnusedLocals": true, 15 + "noUnusedParameters": true, 16 + "noImplicitReturns": true, 17 + "noFallthroughCasesInSwitch": true, 18 + /* Module Resolution Options */ 19 + "moduleResolution": "node", 20 + "esModuleInterop": true, 21 + "allowSyntheticDefaultImports": true, 22 + "resolveJsonModule": true, 23 + "allowJs": true 24 + }, 25 + "exclude": [ 26 + "test", 27 + "release", 28 + "app/main.prod.js", 29 + "app/main.prod.js.map", 30 + "app/renderer.prod.js", 31 + "app/renderer.prod.js.map", 32 + "app/style.css", 33 + "app/style.css.map", 34 + "app/dist", 35 + "dll", 36 + "app/main.js", 37 + "app/main.js.map" 38 + ] 39 + }