-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathtsconfig.json
More file actions
35 lines (35 loc) · 1.03 KB
/
tsconfig.json
File metadata and controls
35 lines (35 loc) · 1.03 KB
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
{
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "react-jsx",
"jsxImportSource": "@kitajs/html",
"module": "Preserve",
"moduleResolution": "Bundler",
"outDir": "./build",
"resolveJsonModule": true,
"types": ["cypress"],
"lib": ["DOM", "ESNext"]
},
"exclude": ["packages/*", "build/*", "dist/*"],
"include": [
"cypress.config.ts",
"cypress/e2e",
"cypress/support",
"scripts",
"src",
"migrations"
],
"references": [
{ "path": "./packages/core/tsconfig.lib.json" },
{ "path": "./packages/debounce/tsconfig.lib.json" },
{ "path": "./packages/email/tsconfig.lib.json" },
{ "path": "./packages/entreprise/tsconfig.lib.json" },
{ "path": "./packages/identite/tsconfig.lib.json" },
{ "path": "./packages/testing/tsconfig.lib.json" }
],
"extends": "@proconnect-gouv/proconnect.devtools.typescript/base/tsconfig.json"
}