fleet/tsconfig.json

16 lines
401 B
JSON
Raw Permalink 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": "ES2019",
2016-10-31 21:02:06 +00:00
"sourceMap": true,
"jsx": "react",
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"lib": ["ES2021.String"]
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
}