kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
at main 27 lines 484 B view raw
1{ 2 "extends": "../../packages/typescript-config/base.json", 3 4 "compilerOptions": { 5 "outDir": "dist", 6 "rootDir": "src", 7 "module": "CommonJS", 8 "moduleResolution": "Node", 9 "target": "ES2022", 10 "lib": [ 11 "ES2022", 12 "DOM" 13 ], 14 "sourceMap": true, 15 "skipLibCheck": true, 16 "isolatedModules": true, 17 "declaration": false, 18 "declarationMap": false 19 }, 20 "include": [ 21 "src/**/*" 22 ], 23 "exclude": [ 24 "node_modules", 25 "dist" 26 ] 27}