Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tsconfig.server.json - github.com/thedevs-network/kutt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ac0e078698b053031db367f43807c6e4c76a1d30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "compilerOptions": {
		"target": "es2018",
		"module": "commonjs",
		"sourceMap": true,
		"outDir": "production-server",
		"noUnusedLocals": true,
		"resolveJsonModule": true,
		"esModuleInterop": true,
		"noEmit": false,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,		
		"strict": false
  },
	"include": ["global.d.ts", "server"]
}