-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
17 lines (17 loc) · 976 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"compilerOptions": {
"target": "ES6", // Specify ECMAScript target version
"module": "ESNext", // Specify module code generation
"outDir": "./dist", // Redirect output structure to the 'dist' directory
"rootDir": "./src",
"declaration": true,
// "declarationDir": "./dist",
"emitDeclarationOnly": true, // Specify the root directory of input files
"strict": true, // Enable all strict type-checking options
"esModuleInterop": true, // Enables emit interoperability between CommonJS and ES Modules
"skipLibCheck": true, // Skip type checking of declaration files
"forceConsistentCasingInFileNames": true // Disallow inconsistently-cased references to the same file
},
"include": ["src/**/*.ts"], // Specify the files to include
"exclude": ["node_modules"] // Exclude the 'node_modules' directory
}