aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
blob: 3267caab5704a39ede1757bb3aa85f683e6809fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
	"compilerOptions": {
		"moduleResolution": "node",
		"pretty": false,
		"target": "esnext",
		"module": "commonjs",
		"inlineSources": true,
		"inlineSourceMap": true,
		"allowSyntheticDefaultImports": true,
		"skipLibCheck": true,
		"rootDir": "."
	},
	"exclude": [ "node_modules" ],
	"files": [
		"./index.ts",
		"./plugin.ts",
    "./lamp.ts"
	]
}