14 lines
716 B
JSON
14 lines
716 B
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": true, /* 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 */
|
|
"jsx": "react-jsx" /* Required for JSX */
|
|
}
|
|
}
|