oak-domain/tsconfig.test.json

33 lines
1.6 KiB
JSON

{
"compilerOptions": {
"jsx": "preserve",
"target": "ESNEXT", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"declaration": true, /* Generates corresponding '.d.ts' file. */
"importHelpers": true,
"rootDir": ".", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
"downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
"strict": true, /* Enable all strict type-checking options. */
"skipLibCheck": true,
"allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */
"noEmit": true
},
"include": ["test/builder/**/*", "src/***/*.ts"],
"exclude": [
"node_modules",
"**/*.spec.ts",
],
"oakBuildChecks": {
"context": {
"checkAsyncContext": true,
"targetModules": ["store/AsyncRowStore"]
}
}
}