12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "compilerOptions": {
- "baseUrl": "packages",
- "lib": ["es6", "es7", "dom", "scripthost", "webworker"],
- "jsx": "react",
- "target": "es5",
- "module": "commonjs",
- "moduleResolution": "node",
- "sourceMap": true,
- "allowJs": false,
- "outDir": "dist",
- "experimentalDecorators": true,
- "forceConsistentCasingInFileNames": true,
- "removeComments": true,
- "noImplicitReturns": true,
- "noImplicitThis": true,
- "noImplicitAny": true,
- "allowUnusedLabels": true,
- "strictNullChecks": true,
- "suppressImplicitAnyIndexErrors": true,
- "noUnusedLocals": true,
- "allowSyntheticDefaultImports": true,
- "skipLibCheck": true,
- "paths": {}
- },
- "include": ["**/*.js", "**/*.ts", "**/*.tsx"],
- "exclude": [
- "assets",
- "build",
- "dist",
- "indep-pkgs",
- "node_modules",
- "scripts",
- "ssr",
- "stories",
- "__test__",
- "test"
- ]
- }
|