-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 881 Bytes
/
Copy pathtsconfig.json
File metadata and controls
24 lines (24 loc) · 881 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
{
"compilerOptions": {
"strict": true,
"declaration": false,
"outDir": "./dist/",
"target": "ESNext",
"module": "ESNext",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "bundler",
"lib": ["DOM", "ES2018"],
"exactOptionalPropertyTypes": true,
"baseUrl": ".",
"paths": {
"json-schema-library": ["./index.ts"],
"json-schema-library/formats": ["./src/formats/additionalFormats.ts"],
"json-schema-library/remotes": ["./remotes/index.ts"],
"json-schema-library/package.json": ["./package.json"]
},
"types": ["node", "mocha"]
},
"exclude": ["src/**/*.test.ts", "src/**/*.spec.ts", "bowtie/**/*.test.ts"],
"include": ["index.ts", "src/**/*", "remotes/**/*", "bowtie/**/*"]
}