2019-09-25 04:39:03 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"moduleResolution": "node",
|
2019-10-24 01:00:18 +02:00
|
|
|
"jsx": "react",
|
|
|
|
"noImplicitThis": true,
|
2019-09-25 04:39:03 +02:00
|
|
|
"baseUrl": "./src",
|
2019-09-26 20:19:57 +02:00
|
|
|
"paths": {
|
|
|
|
"@kredens/*": [
|
|
|
|
"*"
|
|
|
|
]
|
|
|
|
},
|
2019-10-07 23:31:51 +02:00
|
|
|
"esModuleInterop": true
|
2019-09-25 04:39:03 +02:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./src/**/*"
|
|
|
|
]
|
|
|
|
}
|