-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 828 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 828 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
{
"compilerOptions": {
"module": "esnext",
"target": "es6",
"lib": ["es2020", "dom"],
"jsx": "preserve",
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"strict": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"noErrorTruncation": false,
"allowJs": true,
"resolveJsonModule": true,
"isolatedModules": true,
"types": ["node"],
"paths": {
"@stilus/core": ["./packages/core/src"],
"@stilus/react-core": ["./packages/react-core/src"],
"@stilus/react": ["./packages/react/src"],
"@stilus/react-native": ["./packages/react-native/src"]
}
},
"exclude": ["**/.*/", "**/dist", "**/node_modules"]
}