-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
28 lines (26 loc) · 1.25 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
27
28
{
"compilerOptions": {
"noImplicitAny": false,
/* Basic Options */
"target": "es5", // Specify ECMAScript target version
"module": "ESNext", // Specify module code generation
"lib": ["es6", "dom"], // Specify library files to be included in the compilation
"allowJs": true, // Allow JavaScript files to be compiled
"outDir": "./dist", // Redirect output structure to the directory
"rootDir": "./package/core", // Specify the root directory of input files
"removeComments": true, // Do not emit comments to output
"strict": true, // Enable all strict type-checking options
/* Module Resolution Options */
"moduleResolution": "node", // Resolve modules using Node.js-style
"baseUrl": "./", // Base directory to resolve non-relative module names
"paths": { "*": ["node_modules/*"] }, // List of paths to modules
/* Advanced Options */
"esModuleInterop": true, // Enables emit interoperability between CommonJS and ES Modules
"forceConsistentCasingInFileNames": true // Disallow inconsistently-cased references to the same file
},
"include": ["package/core/**/*", "package/core/**/**/*"],
"exclude": [
"node_modules", // Exclude the node_modules directory
"**/*.test.ts" // Exclude test files
]
}