2018-11-11 21:08:55 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"target": "es5",
|
|
|
|
"lib": ["es2017", "dom"],
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noEmit": true,
|
|
|
|
"strict": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"typeRoots": ["node_modules/@types"],
|
|
|
|
"rootDir": ".",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"*": ["./typings/*"]
|
2018-11-28 14:23:32 +00:00
|
|
|
},
|
|
|
|
"noImplicitThis": false
|
2018-11-11 21:08:55 +00:00
|
|
|
},
|
2018-11-16 12:49:09 +00:00
|
|
|
"include": ["./src/**/*"]
|
2018-11-11 21:08:55 +00:00
|
|
|
}
|