-
Notifications
You must be signed in to change notification settings - Fork 12
/
tsconfig.json
33 lines (31 loc) · 954 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
{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"target": "es2020",
"useDefineForClassFields": true,
"module": "es2020",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"types": ["@intlify/unplugin-vue-i18n/messages", "vite/client"],
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": [
"udata_front/theme/*/assets/js/**/*.js",
"udata_front/theme/*/assets/js/**/*.vue",
"udata_front/theme/*/assets/js/**/*.d.ts",
"udata_front/theme/*/assets/js/**/*.ts",
"vite.config.ts", "udata_front/theme/gouvfr/datagouv-components/src/components/Avatar/AvatarWithName.vue",
],
}