Gitako/tsconfig.json
2020-04-04 00:53:30 +08:00

16 lines
321 B
JSON

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