23 lines
1.4 KiB
JSON
23 lines
1.4 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNEXT" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */,
|
|
"module": "NodeNext" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
|
|
"declaration": true /* Generates corresponding '.d.ts' file. */,
|
|
"declarationMap": true /* Generates a sourcemap for each corresponding '.d.ts' file. */,
|
|
"sourceMap": true /* Generates corresponding '.map' file. */,
|
|
"outDir": "./dist" /* Redirect output structure to the directory. */,
|
|
"rootDir": "." /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */,
|
|
"esModuleInterop": true,
|
|
"strict": true /* Enable all strict type-checking options. */,
|
|
"skipLibCheck": true /* Skip type checking of declaration files. */,
|
|
"forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */
|
|
"experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
|
|
"emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
|
|
"paths": {
|
|
"@typings-ce": ["./src/typings/ce/index.ts"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "index.ts"],
|
|
"exclude": ["node_modules", "tests/**/*.ts", "tests/**/*.tsx"],
|
|
}
|