how to overwsrote ts config

Solutions on MaxInterview for how to overwsrote ts config by the best coders in the world

showing results for - "how to overwsrote ts config"
Giovanni
07 Apr 2016
1tsc --project main/tsconfig.json
2
3{
4	"extends": "./main/tsconfig.json",
5	"compilerOptions": {
6		"outDir": "dist",
7		"target": "ESNext",
8		"module": "CommonJS",
9		"moduleResolution": "Node",
10		"esModuleInterop": true,
11		"allowSyntheticDefaultImports": true,
12		"emitDecoratorMetadata": true,
13		"experimentalDecorators": true,
14		"allowUmdGlobalAccess": true,
15		"downlevelIteration": true,
16		"declaration": true,
17		"noEmitOnError": true,
18		"strict": true,
19		"noImplicitAny": false,
20		"noImplicitThis": false,
21		"typeRoots": ["node_modules/@types", "src/server/types"]
22	},
23	"include": ["src/**/*.ts", "configs/config.ts"],
24	"exclude": [
25		"node_modules",
26		"dist",
27		"esm",
28		"__test__/**/*.{test.ts,spec.ts}",
29		"coverage",
30		".github",
31		"configs/config.ts"
32	]
33}
similar questions
queries leading to this page
how to overwsrote ts config