mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
16 lines
401 B
JSON
16 lines
401 B
JSON
{
|
|
"extends": "@tsconfig/recommended/tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": "./frontend",
|
|
"target": "ES2019",
|
|
"sourceMap": true,
|
|
"jsx": "react",
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"lib": ["ES2021.String"]
|
|
},
|
|
"include": ["./frontend/**/*"],
|
|
"exclude": ["node_modules"],
|
|
"typeRoots": ["./node_modules/@types", "./typings"]
|
|
}
|