forked from claudiospizzi/node-red-contrib-solar-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
16 lines (14 loc) · 1.07 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"compilerOptions": {
"target": "es2018", // ECMAScript 9th edition released in June 2018
"module": "commonjs", // Recommended module system for TypeScript
"moduleResolution": "node", // Recommended module resolution, mimic the Node.js behavior
"esModuleInterop": true, // Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'
"rootDir": "./src", // Directory for all source files
"outDir": "./dist", // Directory for all compiled files
"strict": true, // Enable all strict type-checking options
"forceConsistentCasingInFileNames": true, // Ensure consistent file casing having the same behavior on multiple platforms
"sourceMap": true, // Generates .map files mapping source TypeScript to compiled JavaScript for debugging
},
"exclude": [ "src/nodes/*/*.html" ]
}