Gitako/tsconfig.json
2024-07-15 01:19:08 +08:00

21 lines
482 B
JSON

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