forked from nfdi4plants/web-components
-
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) · 934 Bytes
/
tsconfig.json
File metadata and controls
27 lines (27 loc) · 934 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": "esnext",
"lib": ["es2017", "dom", "dom.iterable"],
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "./types",
"rootDir": "./src",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": false,
// // The next 2 below are a workaround for: https://github.com/typestack/class-transformer/issues/472
// // https://github.com/apollographql/graphql-tag/pull/403
// // Failed to parse source map from '.map' file: Error: ENOENT: no such file or directory, open '.map' file
"sourceMap": true,
"inlineSources": true
},
"include": ["src/**/*.ts"],
"exclude": []
}