@ovine/init
Version:
Apply ovine template more easily.
30 lines (29 loc) • 699 B
JSON
{
"compilerOptions": {
"target": "es5",
"module": "ESNext",
"lib": ["dom", "es2017"],
"moduleResolution": "Node",
"noImplicitAny": false,
"jsx": "react",
"outDir": "dist",
"rootDir": ".",
"baseUrl": "./src",
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"paths": {
"~/*": ["./*"],
"@core/*": ["../node_modules/@ovine/core/lib/*"]
},
"types": [
"@types/react",
"@types/lodash",
"@types/styled-components",
"@types/react-router-dom",
"amis/lib"
],
"typeRoots": ["./typings"]
},
"include": ["./src", "./typings"],
"exclude": ["node_modules", "__tests__", "lib"]
}