cg-select/tsconfig.json

24 lines
1.5 KiB
JSON
Raw 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. */,
// "moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
2023-01-16 19:30:44 +03:00
"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-01-16 19:30:44 +03:00
"strict": true,
/* Completeness */
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
2023-01-16 15:43:45 +03:00
"skipLibCheck": true /* Skip type checking all .d.ts files. */
}
}