Procedurally generates a radio weather report
at master 367 B view raw
1{ 2 "compilerOptions": { 3 "lib": ["ESNext"], 4 "module": "NodeNext", 5 "target": "ESNext", 6 7 "esModuleInterop": true, 8 "skipLibCheck": true, 9 "moduleResolution": "node16", 10 "sourceMap": true, 11 "inlineSources": true, 12 "rootDir": "./", 13 "outDir": "./distribution" 14 }, 15 "include": ["src/**/*", "test/**/*"], 16 "exclude": ["**/*.spec.ts"] 17}