forked from callstack/linaria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
32 lines (32 loc) · 831 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
{
"exclude": [
"node_modules",
"packages/**/__dtslint__/**",
"packages/**/__tests__/**",
"packages/**/__fixtures__/**",
"packages/**/__utils__/**",
"packages/**/dist/**",
"packages/**/types/**"
],
"compilerOptions": {
"baseUrl": ".",
"composite": true,
"paths": {
"@linaria/*": ["./packages/*/src"]
},
"jsx": "react",
"lib": ["es6", "es2017", "es2018", "ES2019.Array", "dom"],
"module": "es6",
"moduleResolution": "node",
"strict": true,
"target": "esnext",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"typeRoots": ["node_modules/@types", "typings"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"preserveWatchOutput": true,
}
}