summaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 9ed6a90c60717e37b8cf9f43328cf40a4065e179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
	// https://v3.nuxtjs.org/concepts/typescript
	"extends": "./.nuxt/tsconfig.json",
	"compilerOptions": {
		"baseUrl": ".",
		"jsx": "preserve",
		"paths": {
			"~/*": ["./*"],
			"@/*": ["./*"],
			"~~/*": ["./*"],
			"@@/*": ["./*"]
		}
	},
	"exclude": ["node_modules", ".nuxt", ".output"]
}