Gitako/tsconfig.json
2020-03-14 20:42:04 +08:00

16 lines
318 B
JSON

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