generated from ministryofjustice/hmpps-template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 870 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"extends": "@tsconfig/node22/tsconfig.json",
"compileOnSave": true,
"compilerOptions": {
"target": "es2018",
"outDir": "./dist",
"sourceMap": true,
"skipLibCheck": true,
"noEmit": false,
"allowJs": false,
"strict": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"typeRoots": ["./server/@types", "./node_modules/@types"],
"baseUrl": ".",
"paths": {
"@approved-premises/api": ["server/@types/shared/index.d.ts"],
"@approved-premises/ui": ["server/@types/ui/index.d.ts"]
}
},
"exclude": ["node_modules", "assets/**/*.js", "integration_tests", "dist", "cypress.config.ts",
"esbuild-configs"
],
"include": ["**/*.js", "**/*.ts"]
}