forked from BloomBooks/BloomLibrary2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
35 lines (35 loc) · 1.06 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
{
"compilerOptions": {
"target": "ES2017",
"module": "esnext",
"sourceMap": true,
"jsx": "react",
"lib": ["dom", "es5", "scripthost", "es2017.object"],
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"strict": true,
"strictNullChecks": true,
"outDir": "../../output/browser",
"resolveJsonModule": true,
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"moduleResolution": "node",
"isolatedModules": true,
"noEmit": true,
"plugins": [
{
"name": "typescript-styled-plugin",
"lint": {
"validProperties": ["label"]
}
}
],
"noFallthroughCasesInSwitch": true
},
"exclude": ["node_modules", "typings"],
"include": ["src", "src/components/statistics/dom-to-image-more.d.ts"]
}