-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.app.json
More file actions
33 lines (33 loc) · 835 Bytes
/
Copy pathtsconfig.app.json
File metadata and controls
33 lines (33 loc) · 835 Bytes
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": {
"alwaysStrict": true,
"composite": true,
"lib": [
"ESNext",
"DOM",
"WebWorker"
],
"module": "ESNext",
"moduleResolution": "Bundler",
"noImplicitAny": true,
"noImplicitThis": true,
"strict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"target": "ESNext",
"types": [
"vite-plugin-pwa/client"
]
},
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": [
"./client/env.d.ts",
"./shared/**/*",
"./client/*.ts",
"./client/src/**/*",
"./client/src/**/*.vue",
"./client/manifest.json"
]
}