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