fleet/tsconfig.json

20 lines
364 B
JSON
Raw Normal View History

2016-10-31 21:02:06 +00:00
{
"extends": "@tsconfig/recommended/tsconfig.json",
2016-10-31 21:02:06 +00:00
"compilerOptions": {
"baseUrl": "./frontend",
"target": "ES2016",
2016-10-31 21:02:06 +00:00
"sourceMap": true,
"jsx": "react",
"allowSyntheticDefaultImports": true
2016-10-31 21:02:06 +00:00
},
"include": [
"./frontend/**/*"
],
"exclude": [
"node_modules"
],
"typeRoots": [
"./node_modules/@types", "./typings"
2016-10-31 21:02:06 +00:00
]
}