[READ-ONLY] Mirror of https://github.com/danielroe/nuxt-timings-module.
0

Configure Feed

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

nuxt-timings-module / tsconfig.json
553 B 30 lines
1{ 2 "compilerOptions": { 3 "strict": true, 4 "target": "es2018", 5 "module": "esnext", 6 "lib": [ 7 "esnext", 8 "dom" 9 ], 10 "allowJs": true, 11 "esModuleInterop": true, 12 "moduleResolution": "node", 13 "declaration": false, 14 "skipLibCheck": true, 15 "resolveJsonModule": true, 16 "allowSyntheticDefaultImports": true, 17 "types": [ 18 "node", 19 "jest" 20 ], 21 "paths": { 22 "nuxt-timings": ["./src/index.ts"], 23 "nuxt-timings/*": ["./src/*"] 24 } 25 }, 26 "exclude": [ 27 "node_modules", 28 "dist" 29 ] 30}