forked from nexoral/AxioDB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
22 lines (22 loc) · 1.2 KB
/
tsconfig.json
File metadata and controls
22 lines (22 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"outDir": "./lib", // Specify an output directory for all emitted files
"target": "ES6", // Specify ECMAScript target version
"module": "CommonJS", // Specify module code generation
"declaration": true, // Generate declaration files
"moduleResolution": "Node", // Specify module resolution strategy
"checkJs": false, // Disable checking of JavaScript files
"allowJs": true, // Allow JavaScript files to be included
"sourceMap": true, // Generate source maps
"jsx": "react", // Specify the JSX factory function
"strict": true, // Enable all strict type-checking options
"removeComments": false, // Preserve comments in the output
"esModuleInterop": true, // Enable compatibility with CommonJS modules
"skipLibCheck": true, // Skip type checking of declaration files from dependencies
"forceConsistentCasingInFileNames": true,
"lib": ["ES6", "DOM"], // Include the necessary TypeScript library declarations
"rootDir": "./source" // Specify the root directory for your source code
},
"include": ["source/**/*.ts", "source/**/*.tsx", "source/**/*.txt"], // Include TypeScript and TSX files
"exclude": ["node_modules", "Docker/**"]
}