[READ-ONLY] Mirror of https://github.com/danielroe/repro-hmr-composition-api.
0

Configure Feed

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

repro-hmr-composition-api / tsconfig.json
508 B 21 lines
1{ 2 "compilerOptions": { 3 "target": "es2018", 4 "module": "esnext", 5 "moduleResolution": "node", 6 "lib": ["esnext", "esnext.asynciterable", "dom"], 7 "esModuleInterop": true, 8 "allowJs": true, 9 "sourceMap": true, 10 "strict": true, 11 "noEmit": true, 12 "experimentalDecorators": true, 13 "baseUrl": ".", 14 "paths": { 15 "~/*": ["./*"], 16 "@/*": ["./*"] 17 }, 18 "types": ["@types/node", "@nuxt/types", "@nuxt/content"] 19 }, 20 "exclude": ["node_modules", ".nuxt", "dist"] 21}