-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 618 Bytes
/
Copy pathtsconfig.json
File metadata and controls
25 lines (25 loc) · 618 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
{
"exclude": ["node_modules/**", "src/*-bundle.js", "workbox-*.js", "sw.js"],
"include": [
"src/**/*",
"tests/**/*",
"src/missing-types.d.ts",
"*.mjs",
"*.cjs"
],
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"target": "es2015",
"module": "nodenext",
"moduleResolution": "nodenext",
"skipLibCheck": true,
"strict": true,
"strictNullChecks": false,
"noImplicitAny": false,
"noEmit": true,
"baseUrl": ".",
"types": ["node", "vite/client", "vite-plugin-pwa/client"],
"lib": ["dom", "dom.iterable", "es2015", "es2018.promise"]
}
}