| { | |
| "compilerOptions": { | |
| "rootDirs": ["src"], | |
| "outDir": "lib", | |
| "moduleResolution": "node", | |
| "downlevelIteration": true, | |
| "target": "es5", | |
| "module": "commonjs", | |
| "allowJs": true, | |
| "jsx": "react", | |
| "experimentalDecorators": true, | |
| "esModuleInterop": true, | |
| "sourceMap": true, | |
| "skipLibCheck": true, | |
| "skipDefaultLibCheck": true, | |
| "noUnusedLocals": false, | |
| "declaration": true, | |
| "declarationMap": true, | |
| "composite": true, | |
| "lib": ["es7", "dom"], | |
| "types": [ | |
| "node", | |
| "jest", | |
| "../packages/plugins/content/slate/src/slateTypes" | |
| ], | |
| "paths": { | |
| "react": ["./node_modules/@types/react/index"], | |
| "slate": ["./node_modules/@types/slate/index"] | |
| } | |
| } | |
| } | |