generated from ministryofjustice/hmpps-template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
40 lines (39 loc) · 1017 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
30
31
32
33
34
35
36
37
38
39
40
{
"compileOnSave": true,
"compilerOptions": {
"target": "es2018",
"module": "commonjs",
"moduleResolution": "node",
"outDir": "./dist",
"sourceMap": true,
"skipLibCheck": true,
"noEmit": false,
"allowJs": true,
"checkJs": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"experimentalDecorators": true,
"typeRoots": ["./server/@types", "./node_modules/@types"],
"inlineSources": true,
"ignoreDeprecations": "5.0",
// Set `sourceRoot` to "/" to strip the build path prefix
// from generated source code references.
// This improves issue grouping in Sentry.
"sourceRoot": "/"
},
"exclude": [
"node_modules",
"assets/**/*.js",
"integration_tests",
"e2e_tests",
"dist",
"cypress.config.ts",
"playwright.config.ts",
"playwright-report",
"test-results",
"eslint.config.mjs"
],
"include": ["**/*.js", "**/*.ts"]
}