File size: 744 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
{
"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"]
}
}
}
|