123456789101112131415161718192021222324252627 |
- {
- "compilerOptions": {
- "composite": true,
- // Emit options
- "rootDir": "src",
- "outDir": "lib",
- "declaration": true,
- "declarationMap": true,
- "target": "es5",
- "module": "commonjs",
- "stripInternal": true,
- "sourceMap": true,
- "newLine": "LF",
- // Checking options
- "strict": true,
- "charset": "utf8",
- "lib": [
- "es5",
- "es2015.collection"
- ],
- // Module resolution and types
- "moduleResolution": "node"
- },
- "include": [
- "src"
- ]
- }
|