-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
44 lines (39 loc) · 1.4 KB
/
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
35
36
37
38
39
40
41
42
43
44
{
"compilerOptions": {
// Project options
"outDir": "./dist/",
"target": "esnext",
"module": "esnext", // forced by roolup typescript plugin
"importHelpers": true, // forced by roolup typescript plugin
"noEmit": false, // forced by roolup typescript plugin
// Module resolution
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"resolveJsonModule": true,
"moduleResolution": "node", // forced by roolup typescript plugin
"plugins": [{ "name": "@vuedx/typescript-plugin-vue" }],
// Type checking
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"lib": ["esnext", "dom"],
"types": ["vite/client", "jest", "node", "tabulator-tables"],
// Code quality
"strict": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"importsNotUsedAsValues": "error",
"jsx": "preserve",
// Watch options
"noEmitHelpers": false, // forced by roolup typescript plugin
"noResolve": false // forced by roolup typescript plugin
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "src/parser/getDataAsTable/getEndValue.spects"]
}