Skip to content

Commit

Permalink
feat(ts): wip generator
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Chau committed Dec 10, 2018
1 parent b11c07d commit 70eef33
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"strict": true,
"importHelpers": true,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"types": [
"webpack-env"
],
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
},
"lib": [
"dom",
"esnext",
],
},
"exclude": [
"node_modules"
],
"include": [
"src/**/*.ts"
]
}

0 comments on commit 70eef33

Please sign in to comment.