-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
39 lines (39 loc) · 1.18 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
36
37
38
39
{
"compilerOptions": {
"target": "es2015",
"lib": ["dom", "es2015", "es2016", "es2017", "esnext.asynciterable"],
"module": "es2015",
"jsx": "react",
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"strict": true,
"noImplicitAny": true,
"listEmittedFiles": true,
"listFiles": false,
"removeComments": false,
"moduleResolution": "node",
"downlevelIteration": true,
"pretty": true,
"esModuleInterop": true,
"plugins": [
{
"name": "typescript-snapshots-plugin"
},
{
"name": "typescript-lit-html-plugin"
}
]
},
"include": ["packages/**/*.ts", "packages/**/*.tsx", "typings/*.d.ts"],
"exclude": [
"lib",
"node_modules",
"packages/react-intl-namespaces/dist/index.d.ts",
"packages/react-intl-namespaces/dist/types.d.ts",
"packages/react-intl-namespaces-locize-client/dist/index.d.ts",
"packages/react-intl-namespaces-locize-client/dist/types.d.ts",
"packages/react-intl-namespaces-locize-editor/dist/index.d.ts",
"packages/react-intl-namespaces-locize-editor/dist/types.d.ts"
]
}