-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
15 lines (15 loc) · 923 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"compilerOptions": {
"incremental": false, /* Enables incremental builds */
"target": "es2017", /* Specifies the ES2017 target, compatible with Coherent GT */
"module": "es2015", /* Ensures that modules are at least es2015 */
"strict": true, /* Enables strict type checking, highly recommended but optional */
"esModuleInterop": true, /* Emits additional JS to work with CommonJS modules */
"skipLibCheck": true, /* Skip type checking on library .d.ts files */
"forceConsistentCasingInFileNames": true, /* Ensures correct import casing */
"moduleResolution": "node", /* Enables compatibility with MSFS SDK bare global imports */
"jsxFactory": "FSComponent.buildComponent", /* Required for FSComponent framework JSX */
"jsxFragmentFactory": "FSComponent.Fragment", /* Required for FSComponent framework JSX */
"jsx": "react", /* Required for FSComponent framework JSX */
}
}