[READ-ONLY] Mirror of https://github.com/danielroe/nuxt-typed-vuex-vue-example. nuxt-typed-vuex-vue-example.now.sh
0

Configure Feed

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

nuxt-typed-vuex-vue-example / tsconfig.json
683 B 39 lines
1{ 2 "compilerOptions": { 3 "target": "esnext", 4 "module": "esnext", 5 "strict": true, 6 "jsx": "preserve", 7 "importHelpers": true, 8 "moduleResolution": "node", 9 "experimentalDecorators": true, 10 "esModuleInterop": true, 11 "allowSyntheticDefaultImports": true, 12 "sourceMap": true, 13 "baseUrl": ".", 14 "types": [ 15 "webpack-env" 16 ], 17 "paths": { 18 "@/*": [ 19 "src/*" 20 ] 21 }, 22 "lib": [ 23 "esnext", 24 "dom", 25 "dom.iterable", 26 "scripthost" 27 ] 28 }, 29 "include": [ 30 "src/**/*.ts", 31 "src/**/*.tsx", 32 "src/**/*.vue", 33 "tests/**/*.ts", 34 "tests/**/*.tsx" 35 ], 36 "exclude": [ 37 "node_modules" 38 ] 39}