1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "compilerOptions": {
- "outDir": "build/dist",
- "module": "esnext",
- "target": "esnext",
- "lib": ["esnext", "dom"],
- "sourceMap": true,
- "baseUrl": ".",
- "jsx": "react",
- "allowSyntheticDefaultImports": true,
- "noErrorTruncation": true,
- "moduleResolution": "node",
- "forceConsistentCasingInFileNames": true,
- "noImplicitReturns": true,
- "suppressImplicitAnyIndexErrors": true,
- "noUnusedLocals": true,
- "allowJs": true,
- "skipLibCheck": true,
- "experimentalDecorators": true,
- "strict": true,
- "paths": {
- "@/*": ["./src/*"]
- }
- },
- "include": ["src/**/*", "types/**/*", "global.d.ts", "bscroll.d.ts"],
- "exclude": [
- "node_modules",
- "build",
- "dist",
- "scripts",
- "acceptance-tests",
- "webpack",
- "jest",
- "src/setupTests.ts",
- "tslint:latest",
- "tslint-config-prettier"
- ]
- }
|