cg-select/tsconfig.json

20 lines
1.2 KiB
JSON
Raw Permalink Normal View History

{
2023-01-17 20:21:43 +03:00
// "include": ["src/**/*", "index.ts"],
"compilerOptions": {
/* Language and Environment */
2023-01-16 15:43:45 +03:00
"target": "es2017" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
/* Modules */
2023-01-16 15:43:45 +03:00
"module": "commonjs" /* Specify what module code is generated. */,
2023-01-16 19:30:44 +03:00
"rootDir": "./" /* Specify the root folder within your source files. */,
"baseUrl": "./src" /* Specify the base directory to resolve non-relative module names. */,
"outDir": "./dist" /* Specify an output folder for all emitted files. */,
"allowSyntheticDefaultImports": true /* Allow 'import x from y' when a module doesn't have a default export. */,
2023-01-16 15:43:45 +03:00
"esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */,
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
2023-01-16 15:43:45 +03:00
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
2023-03-31 14:51:02 +03:00
"moduleResolution": "node",
2023-01-16 19:30:44 +03:00
"strict": true,
2023-01-16 15:43:45 +03:00
"skipLibCheck": true /* Skip type checking all .d.ts files. */
}
}