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

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