|
1 | 1 | { |
| 2 | + "extends": "../../tsconfig.base.json", |
| 3 | + "include": [ |
| 4 | + "src/**/*", |
| 5 | + "test/**/*", |
| 6 | + "test/fixtures/datablending/load-responses.json" |
| 7 | + ], |
2 | 8 | "compilerOptions": { |
3 | | - "lib": ["es2017"], |
4 | | - "target": "es2017", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */ |
5 | | - "module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */ |
6 | | - "declaration": true, |
7 | | - "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */ |
8 | | - "declarationDir": "./dist", /* Generates a sourcemap for each corresponding '.d.ts' file. */ |
9 | | - "sourceMap": false, /* Generates corresponding '.map' file. */ |
10 | | - "outDir": "./temp", /* Redirect output structure to the directory. */ |
11 | | - "strict": true, /* Enable all strict type-checking options. */ |
12 | | - "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ |
13 | | - "strictNullChecks": true, /* Enable strict null checks. */ |
14 | | - "strictFunctionTypes": true, /* Enable strict checking of function types. */ |
15 | | - "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ |
16 | | - "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */ |
17 | | - "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */ |
18 | | - "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */ |
19 | | - "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ |
20 | | - "allowSyntheticDefaultImports": true, |
21 | | - "skipLibCheck": true, /* Skip type checking of declaration files. */ |
22 | | - "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ |
| 9 | + "outDir": "dist", |
| 10 | + "rootDir": ".", |
| 11 | + "baseUrl": ".", |
| 12 | + "resolveJsonModule": true, |
| 13 | + "esModuleInterop": true |
23 | 14 | } |
24 | 15 | } |
0 commit comments