-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
18 lines (18 loc) · 891 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"compilerOptions": {
"target": "ES2020" /* Specify ECMAScript target version */,
"module": "NodeNext" /* Specify module code generation */,
"strict": true /* Enable all strict type-checking options */,
"esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules */,
"skipLibCheck": true /* Skip type checking of all declaration files (*.d.ts) */,
"forceConsistentCasingInFileNames": true /* Ensure that casing is consistent in file names */,
"resolveJsonModule": true /* Allow importing .json files */,
"outDir": "dist" /* Redirect output structure to the directory */,
"rootDir": "src" /* Specify the root directory of input files */
},
"include": [
"src/**/*.ts",
"src/app.js"
] /* Specify files to include in compilation */,
"exclude": ["node_modules"] /* Specify files to exclude from compilation */
}