summaryrefslogtreecommitdiffstats
path: root/tsconfig.json
blob: 93aa6787786bfeab0d2bf22a7c7c7a9ecebdc9d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
	"include": ["./src/**/*.ts"],
	"exclude": ["node_modules", "vendor"],
	"compilerOptions": {
		"outDir": "./js",
		"allowJs": true,
		"module": "CommonJS",
		"moduleResolution": "bundler",
		"verbatimModuleSyntax": true,
		"target": "ES2020",
		"esModuleInterop": true,
		"forceConsistentCasingInFileNames": true,
	}
}