This commit is contained in:
2020-02-08 13:37:13 +03:00
commit 672e09abb5
21 changed files with 650 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
{
"compilerOptions": {
"lib": [
"dom",
"es7"
],
"baseUrl": ".",
"paths": {
"*": [
"*",
"src/*",
"lib/*",
"dist/*"
]
},
"outDir": "./dist/",
"sourceMap": true,
"esModuleInterop": true,
"noImplicitAny": false,
"module": "commonjs",
"target": "es5",
"jsx": "react",
"typeRoots": ["node_modules/@types", "src/typings", "../../node_modules/@types"]
},
"exclude": [
"node_modules"
]
}