Gitako/tsconfig.json
2022-05-12 23:27:08 +08:00

15 lines
369 B
JSON

{
"compilerOptions": {
"moduleResolution": "Node",
"module": "ESNext",
"target": "ESNext",
"jsx": "react",
"strict": true,
"lib": ["dom", "es2017.object", "es2016", "ES2019.Array", "ES2020.String"],
"baseUrl": "src",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"outDir": "dist"
},
"include": ["src"]
}