-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtsconfig.json
34 lines (34 loc) · 851 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
34
{
"compilerOptions": {
"declaration": true,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"experimentalDecorators": true,
"resolveJsonModule": true,
"allowJs": true,
"pretty": true,
"allowSyntheticDefaultImports": true,
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"sourceMap": true,
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
"importHelpers": true,
"esModuleInterop": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true,
"outDir": "dist",
"jsx": "preserve",
"types": [
"vite/client", // if using vite
// ...
]
},
"include": [
"packages/**/*.ts",
"packages/**/*.tsx",
"packages/**/*.vue"],
"exclude": ["node_modules", "dist"]
}