tianji/tsconfig.server.json

11 lines
268 B
JSON
Raw Permalink Normal View History

2023-10-14 16:02:23 +00:00
{
"extends": "./tsconfig.json",
"include": ["./src/server/**/*.ts", "./src/shared/**/*.ts", "./src/types/**/*.ts"],
"exclude": ["node_modules/**/*", "dist"],
"compilerOptions": {
"rootDirs": ["./", "../"],
"outDir": "./dist",
"noEmit": false
}
}