29 lines
655 B
JSON
29 lines
655 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"dom",
|
|
"es7"
|
|
],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": [
|
|
"*",
|
|
"src/*",
|
|
"lib/*",
|
|
"dist/*"
|
|
]
|
|
},
|
|
"outDir": "./dist/",
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"downlevelIteration" :true,
|
|
"noImplicitAny": false,
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"jsx": "react",
|
|
"typeRoots": ["node_modules/@types", "src/typings", "../../node_modules/@types"]
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |