[READ-ONLY] Mirror of https://github.com/FoxxMD/komodo-import. Import existing compose stacks into Komodo foxxmd.github.io/komodo-import
compose docker import komodo toml
0

Configure Feed

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

komodo-import / tsconfig.json
745 B 34 lines
1{ 2 "compilerOptions": { 3 "emitDecoratorMetadata": true, 4 "experimentalDecorators": true, 5 "allowSyntheticDefaultImports": true, 6 "esModuleInterop": true, 7 "lib": [ 8 "dom", 9 "dom.iterable", 10 "esnext" 11 ], 12 "useDefineForClassFields": true, 13 "target": "ESNext", 14 "allowJs": false, 15 "skipLibCheck": true, 16 "strict": false, 17 "forceConsistentCasingInFileNames": true, 18 "noFallthroughCasesInSwitch": true, 19 "module": "NodeNext", 20 "moduleResolution": "NodeNext", 21 "resolveJsonModule": true, 22 "isolatedModules": true, 23 "noEmit": true, 24 "jsx": "react-jsx", 25 "sourceMap": true 26 }, 27 "include": [ 28 "src/**/*.ts", 29 "tests/**/*.ts" 30 ], 31 "exclude": [ 32 "node_modules" 33 ] 34}