summaryrefslogtreecommitdiffstats
path: root/tsconfig.json
blob: aa3f5efdcf6f2ee6bb75baf99ee56dfb44d93a48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
	"extends": "@vue/tsconfig/tsconfig.json",
	"include": ["./src/**/*.ts"],
	"compilerOptions": {
		"types": ["cypress", "node", "dockerode"],
		"allowSyntheticDefaultImports": true,
		"moduleResolution": "node",
		"target": "ESNext",
		"module": "esnext",
		"declaration": true,
		"strict": true,
		"noImplicitAny": false,
		"resolveJsonModule": true
	},
	"ts-node": {
		// these options are overrides used only by ts-node
		// same as our --compilerOptions flag and our TS_NODE_COMPILER_OPTIONS environment variable
		"compilerOptions": {
			"module": "commonjs"
		}
	}
}