summaryrefslogtreecommitdiffstats
path: root/tsconfig.json
blob: 3d0d2e67645d5cdb71033419f06c8072f5e9c74c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
	"extends": "@vue/tsconfig/tsconfig.json",
	"include": ["src/**/*.ts", "src/env.d.ts"],
	"exclude": ["node_modules", "vendor"],
	"compilerOptions": {
		"outDir": "./js",
		"allowJs": true,
		"checkJs": false,
		"allowImportingTsExtensions": true,
		"lib": ["ESNext"],
	},
	"vueCompilerOptions": {
		"target": 2.7,
	}
}