-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (36 loc) · 882 Bytes
/
Copy pathtsconfig.json
File metadata and controls
36 lines (36 loc) · 882 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": {
"paths": {
"@root/*": ["./src/*"],
"@pkgs/*": ["./packages/*"]
},
"outDir": "./dist/",
"lib": ["DOM", "ESNext", "DOM.Iterable"],
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"jsx": "react-jsx",
// lint
"noEmit": true,
"allowJs": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"strict": true,
"sourceMap": true,
"noImplicitAny": true,
"noImplicitOverride": true,
// TS 6+/7: types defaults to []; restore needed ambient packages
"types": ["chrome", "node"]
},
"include": [
"./src/**/*",
"./scripts/**/*",
"./packages/**/*",
"./e2e/**/*",
"./playwright.config.ts",
"./tailwind.config.ts"
],
"exclude": ["node_modules"]
}