-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
30 lines (27 loc) · 739 Bytes
/
tsconfig.json
File metadata and controls
30 lines (27 loc) · 739 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
{
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"strict": true,
"target": "ESNext",
"lib": ["ES2021", "dom"],
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
// JSX configuration
"jsx": "react-jsx",
"esModuleInterop": true,
// We enforce stricter module resolution for Node16 compatibility
// But when building we use Bundler & ESNext for ESM
"module": "NodeNext",
"moduleResolution": "NodeNext",
"composite": true,
"isolatedModules": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"rootDir": "./src",
"outDir": "./dist",
"skipLibCheck": true
},
"include": ["./src/**/*"]
}