-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (36 loc) · 651 Bytes
/
tsconfig.json
File metadata and controls
36 lines (36 loc) · 651 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
28
29
30
31
32
33
34
35
36
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"lib": [
"esnext",
"esnext.string",
"dom",
"dom.iterable"
],
"types": [
"node",
"jest"
],
"esModuleInterop": true,
"removeComments": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"noEmit": true,
"allowJs": true
},
"exclude": [
"node_modules",
"tests",
"packages/**/tests/**/*.ts",
"packages/**/types/*.d.ts",
"packages/stylify/tools/native-preset-generator/template.ts"
],
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
}
}