howyoucanhelp.us/tsconfig.json

16 lines
259 B
JSON
Raw Normal View History

2018-08-10 22:50:38 +00:00
{
"compilerOptions": {
"module" : "none",
"outDir": "./dist/",
"skipLibCheck": true,
2018-08-10 22:50:38 +00:00
"noImplicitAny": true,
"module": "es6",
"target": "es2015",
"allowJs": true,
"sourceMap": true
},
"include": [
"./src/**/*"
]
2018-08-10 22:50:38 +00:00
}