馃挵 NPM package to get stock and historical price from finance.yahoo.com
at master 884 B view raw
1{ 2 "compilerOptions": { 3 /* Basic Options */ 4 "target": "ESNext", 5 "module": "commonjs", 6 "declaration": true, 7 "outDir": "./dist", 8 "rootDir": "./src", 9 "skipLibCheck": true, 10 11 /* Strict Type-Checking Options */ 12 // "strict": true, 13 // "noImplicitAny": true, 14 // "strictNullChecks": true, 15 // "strictFunctionTypes": true, 16 // "strictBindCallApply": true, 17 // "strictPropertyInitialization": true, 18 // "noImplicitThis": true, 19 // "alwaysStrict": true, 20 21 /* Additional Checks */ 22 // "noUnusedLocals": true, 23 // "noUnusedParameters": true, 24 // "noImplicitReturns": true, 25 // "noFallthroughCasesInSwitch": true, 26 27 /* Module Resolution Options */ 28 "moduleResolution": "node", 29 "esModuleInterop": true 30 }, 31 "exclude": ["node_modules", "dist"] 32}