123456789101112131415161718192021222324252627282930 |
- {
- "compilerOptions": {
- "target": "es5",
- "module": "commonjs",
- "allowJs": true,
- "outDir": "scripts",
- "removeComments": true,
- "strict": true,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "noFallthroughCasesInSwitch": true,
- "esModuleInterop": true,
- "moduleResolution": "node",
- "baseUrl": ".",
- "paths": {
- "*": [
- "typings/*"
- ]
- },
- "typeRoots": [
- "./typings",
- "./node_modules/@types"
- ],
- "sourceMap": true,
- "noErrorTruncation": true,
- },
- "include": [
- "src/**/*"
- ]
- }
|