forked from hey-api/json-schema-ref-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (27 loc) · 686 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 686 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
{
"compilerOptions": {
"module": "commonjs",
"outDir": "dist",
"target": "ES2020",
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "src",
"declaration": true,
"esModuleInterop": true,
"inlineSourceMap": false,
"lib": ["esnext", "dom"],
"listEmittedFiles": false,
"listFiles": false,
"noFallthroughCasesInSwitch": true,
"pretty": true,
"resolveJsonModule": true,
"rootDir": ".",
"skipLibCheck": true,
"strict": true,
"noImplicitReturns": true,
"noUnusedParameters": true
},
"compileOnSave": false,
"exclude": ["node_modules", "dist"],
"include": ["lib/**/*", "vite.config.ts"]
}