123456789101112131415161718192021222324252627 |
- {
- "compilerOptions": {
- "target": "es2017",
- "module": "commonjs",
- "strict": true,
- "noImplicitAny": true,
- "noUnusedLocals": true,
- "noImplicitReturns": true,
- "moduleResolution": "node",
- "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'. */
- "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
- "declaration": true,
- "resolveJsonModule": true,
- "skipLibCheck": true,
- "types" : [
- "node"
- ],
- "forceConsistentCasingInFileNames": true,
- "baseUrl": "."
- },
- "exclude": [
- "node_modules",
- "**/*.spec.ts",
- "**/*.d.ts"
- ]
- }
|