-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
38 lines (38 loc) · 937 Bytes
/
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
{
"compilerOptions": {
"target": "ES5",
"module": "commonjs",
"outDir": "./dist",
"jsx": "react",
"noImplicitAny": true,
"strictNullChecks": true,
"noEmitOnError": true,
"alwaysStrict": true,
"declaration": true
},
"filesGlob": [
"./node_modules/@types/**/*.d.ts",
"./src/**/*.ts",
"./src/**/*.tsx"
],
"atom": {
"rewriteTsconfig": true
},
"files": [
"./node_modules/@types/cucumber/index.d.ts",
"./node_modules/@types/node/index.d.ts",
"./node_modules/@types/react/index.d.ts",
"./src/context.ts",
"./src/index.ts",
"./src/parser.ts",
"./src/react-unit.d.ts",
"./src/render.ts",
"./src/steps.ts",
"./src/examples/clicky.tsx",
"./src/examples/consistent-checkbox.tsx",
"./src/examples/fancy-border.tsx",
"./src/examples/person.tsx",
"./src/examples/pretty-label.tsx",
"./src/examples/upper-case-input.tsx"
]
}