-
Notifications
You must be signed in to change notification settings - Fork 827
/
tsconfig.json
26 lines (26 loc) · 1.07 KB
/
tsconfig.json
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
{
"compilerOptions": {
"target": "esnext", // Specify ECMAScript target version
"module": "NodeNext", // Specify module code generation
"moduleResolution": "NodeNext", // Specify module resolution strategy
"lib": ["dom", "esnext"], // Specify library files to be included in the compilation
"jsx": "react", // Specify JSX code generation
"declaration": false, // Generates corresponding '.d.ts' file
"sourceMap": false, // Generates corresponding '.map' file
"strict": false, // Enable all strict type-checking options
"noEmit": true,
"esModuleInterop": true, // Enables emit interoperability between CommonJS and ES Modules
"skipLibCheck": true, // Skip type checking of declaration files
"isolatedModules": true, // Ensure each file can be safely transpiled without relying on other imports
"paths": {
"baseui": ["./src"],
"baseui/*": ["./src/*"]
}
},
"include": [
"./documentation-site/**/*" // Include all files in the src directory
],
"exclude": [
"node_modules" // Exclude the node_modules directory
]
}