-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathtsconfig.json
26 lines (26 loc) · 914 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
{
"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"]
},
"exclude": ["packages/*", "build/*", "dist/*"],
"include": ["cypress.config.ts", "cypress/e2e", "cypress/support", "src"],
"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" }
],
"extends": "@gouvfr-lasuite/proconnect.devtools.typescript/base/tsconfig.json"
}