[READ-ONLY] Mirror of https://github.com/danielroe/nuxt-timings-module.
625 B
35 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/dist": [
24 "./src/*"
25 ],
26 "nuxt-timings/*": [
27 "./src/*"
28 ]
29 }
30 },
31 "exclude": [
32 "node_modules",
33 "dist"
34 ]
35}