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